Posts: 96
Threads: 26
Joined: Feb 2024
Posts: 11.773
Threads: 63
Joined: May 2017
The torch2.7dev update was for 5xxx cards, which is why I don't use it.
Seems to work with the normal torch-addon.
You could try the vs-mlrt addon and SCUNet (mlrt),...
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 4
Threads: 1
Joined: Aug 2025
In my case it never worked, I just get a black screen after the .engine finishes compiling (3090).
I'm using 2025.07.27.1 and it didn't work with the May version either (same behavior).
The mlrt version works, but for some reason is way slower. Plus I don't need tiling there cause FP16 or BF16 are enough to save memory.
Question: is there a way to use the vsSCUnet models quantized?
I tried converting them to bf16 and fp16 with a python script, they load up but the memory usage remains the same, I think they are expanded back to fp32.
It would be nice to have parity between the vs and mlrt in terms of options to see which one is faster.
Posts: 11.773
Threads: 63
Joined: May 2017
Quote:Question: is there a way to use the vsSCUnet models quantized?
I tried converting them to bf16 and fp16 with a python script, they load up but the memory usage remains the same, I think they are expanded back to fp32.
It would be nice to have parity between the vs and mlrt in terms of options to see which one is faster.
Reading:
https://github.com/AmusementClub/vs-mlrt...lrt.py#L98
it does not sound like it, but you would have to ask over at
https://github.com/AmusementClub/vs-mlrt
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 4
Threads: 1
Joined: Aug 2025
Hi Selur, I was actually referring to
https://github.com/HolyWu/vs-scunet
Looking at
https://github.com/HolyWu/vs-scunet/blob...t__.py#L81
it appears that FP16 is selected if the color space is
RBGH
I actually managed to make it work with custom script
from vsscunet import scunet as SCUNet
# adjusting color space fromYUV420P8 to RGBH for vsSCUNet to trigger FP16
clip = core.resize.Bicubic(clip=clip, format=vs.RGBH, matrix_in_s="709", range_s="limited")
# denoising using SCUNet
clip = SCUNet(clip=clip, model=4)
# adjusting output color from: RGBH to YUV420P8 for x265Model
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P8, matrix_s="709", range_s="limited", dither_type="error_diffusion")
I also tried calling SCUNet with
trt=True, trt_optimization_level=3, trt_cache_dir.....
but the engine compilation doesn't seem to start or never finishes? I cannot tell, and I'm not sure why.
Posts: 11.773
Threads: 63
Joined: May 2017
I'll do some testing.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 11.773
Threads: 63
Joined: May 2017
Worked fine here.
As expected, using FP16 with TRT the engine files get build anew (which really seems to take ages,... I checked the taskmgr to see that there really something was happening since the first few minutes both cpu&gpu usage were rather low,...), but both with TRT enabled and disabled, feeding SCUNet RGBH worked fine here.
=> Uploaded a new dev version where a FP16 checkbox got added to SCUNet. (when enabled Hybrid will feed SCUNet RGBH otherwise RGBS)
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.