-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RIFE with OpenVINO, NCNN with Alpha #49
Comments
https://github.com/AmusementClub/vs-mlrt/releases/tag/v12 Here said no support for rife in ncnnvk. And seems no update since then. |
Ah okay, missed that. That explains the NCNN_VK issue, but it should work with OV_GPU, right? |
I found this https://github.com/AmusementClub/vs-mlrt/releases/tag/model-20220923
|
Top! That solved that, mystery. |
RIFE is supported in OV_GPU since vs-mlrt v13.1. |
Is there any other limitations ? import vapoursynth as vs
from vapoursynth import core
import vsmlrt
from vsmlrt import RIFEModel, Backend
#backend = Backend.OV_CPU()
backend = Backend.OV_GPU(fp16=False, num_streams=2)
src = "test.mp4"
src = vs.core.lsmas.LWLibavSource(src)
ph = (src.height + 31) // 32 * 32 - src.height
pw = (src.width + 31) // 32 * 32 - src.width
padded = src.std.AddBorders(right=pw, bottom=ph).resize.Bicubic(format=vs.RGBS, matrix_in_s="709")
flt = vsmlrt.RIFE(padded, model=RIFEModel.v4_6, backend=backend)
res = flt.resize.Bicubic(format=vs.YUV420P8, matrix_s="709").std.Crop(right=pw, bottom=ph)
res.set_output()
fp16 & rgbh doesn't work neither, show the same error as #47 (comment) |
OV_GPU requires Broadwell+ CPUs with integrated graphics or discrete graphics like DG1/Arc, tested on skylake and Arc. |
Okay, then it should work with my "Intel(R) Arc(TM) A380 Graphics", right? |
Yes, have you upgraded to vs-mlrt v13.1? |
Ah, sorry, thought the nightly at the top was the latest,.. will do and report back. |
Nightly was the latest, both should work. |
Using the nightly and:
I get:
since the Intel Arc card is device 1, I also tried
I'm using the latest 31.0.101.4255 Intel® Graphics Driver (in case it matters). |
What is the return value of |
that show version to be v13-0-g5b7840f -> must have mixed something up. |
Just wanted to give some feedback, using:
I end up with:
and when using:
I end up with:
see also: https://forum.videohelp.com/threads/409482-vs-mlrt-a-bit-after-Getting-started-Backend-trouble
I'm aware that a downloaded an alpha release and this problem might be due to my setup, but in case this is a bug, I wanted to give some feedback.
Side note: I really like the speed boost through vstrt.
Cu Selur
The text was updated successfully, but these errors were encountered: