vs-realesrgan icon indicating copy to clipboard operation
vs-realesrgan copied to clipboard

Real-ESRGAN function for VapourSynth

Results 2 vs-realesrgan issues
Sort by recently updated
recently updated
newest added

Hi, I just compared ``` clip = core.resize.Bicubic(clip, width=720, height=574, format=vs.RGBS, matrix_in_s='709') clip = core.trt.Model(clip, engine_path="realesr-general-wdn-x4v3_opset16_574x720_fp16.engine", num_streams=4, device_id=0) ``` created with ``` trtexec --fp16 --onnx=./realesr-general-wdn-x4v3_opset16.onnx --minShapes=input:1x3x8x8 --optShapes=input:1x3x574x720 --maxShapes=input:1x3x574x720 --saveEngine=./realesr-general-wdn-x4v3_opset16_574x720_fp16.engine --tacticSources=+CUDNN,-CUBLAS,-CUBLAS_LT...

I was wondering if you know of any configuration that can run real time on reasonable consumer gpus such as the rtx 3060?