soifunc 0.11.0__py3-none-any.whl → 0.11.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
soifunc/interpolate.py
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
3
|
import platform
|
|
4
|
+
from typing import TYPE_CHECKING
|
|
4
5
|
|
|
5
6
|
import vstools
|
|
6
|
-
from vsmlrt import backendT
|
|
7
7
|
from vstools import vs
|
|
8
8
|
|
|
9
|
+
if TYPE_CHECKING:
|
|
10
|
+
from vsmlrt import backendT
|
|
11
|
+
|
|
9
12
|
__all__ = ["rate_doubler", "decimation_fixer"]
|
|
10
13
|
|
|
11
14
|
|
|
@@ -43,7 +46,7 @@ def rate_doubler(
|
|
|
43
46
|
else (
|
|
44
47
|
vsmlrt.Backend.ORT_DML()
|
|
45
48
|
if platform.system() == "Windows"
|
|
46
|
-
else vsmlrt.Backend.
|
|
49
|
+
else vsmlrt.Backend.TRT()
|
|
47
50
|
)
|
|
48
51
|
),
|
|
49
52
|
)
|
|
@@ -101,7 +104,7 @@ def decimation_fixer(
|
|
|
101
104
|
else (
|
|
102
105
|
vsmlrt.Backend.ORT_DML()
|
|
103
106
|
if platform.system() == "Windows"
|
|
104
|
-
else vsmlrt.Backend.
|
|
107
|
+
else vsmlrt.Backend.TRT()
|
|
105
108
|
)
|
|
106
109
|
),
|
|
107
110
|
)
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
soifunc/__init__.py,sha256=H6BWoCLRW2ZD47wQtL72SIZvTpD6REH7cUqIYWvCn0k,174
|
|
2
2
|
soifunc/deband.py,sha256=nbtRwktdN8Y-OuiSsj1mVg9vzJhJlu7r6dqs_TLa6rg,1174
|
|
3
3
|
soifunc/denoise.py,sha256=6MY4m3x64gEIgnbVT48htFthG51sLsERN1YGbNYTdGY,6798
|
|
4
|
-
soifunc/interpolate.py,sha256=
|
|
4
|
+
soifunc/interpolate.py,sha256=MNpYyO037H00vqA5d-WijeBd475oMssEvFLGXgeXPxw,4400
|
|
5
5
|
soifunc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
soifunc/resize.py,sha256=PCq-nGt8ZHG4dlx3H1R_dRAebHWEc9Eu_coO3VRGlCY,3028
|
|
7
|
-
soifunc-0.11.
|
|
8
|
-
soifunc-0.11.
|
|
9
|
-
soifunc-0.11.
|
|
10
|
-
soifunc-0.11.
|
|
7
|
+
soifunc-0.11.1.dist-info/LICENSE,sha256=vgEDSMEV1J2nMiCgXE5_sjNtw2VT7_lP7rkAnrFKOWI,1068
|
|
8
|
+
soifunc-0.11.1.dist-info/METADATA,sha256=eGGA-OZ6xqMU8J8Yy806Z5vhOktA_-fxpjpMYt8957I,3364
|
|
9
|
+
soifunc-0.11.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
10
|
+
soifunc-0.11.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|