Topic: MT vs Cores
Let's take this code.
SetMTMode(3,8)
AviSource("Preview.avi", audio=false, pixel_type="YV12")
SetMTMode(2)
InterFrame(Cores=8, Tuning="Smooth", NewNum=60000, NewDen=1001, GPU=true)
What's the difference between AviSynth's MT mode (MT=8) and the Cores parameter? Should it be either one or the other, or should it be the same value in both?
InterFrame Cores doesn't increase the amount of threads being run, but I'm seeing better performance when setting Cores=1.
Just a bit confused about this. Thanks!