We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f5da54 commit d4eee50Copy full SHA for d4eee50
1 file changed
scripts/vsmlrt.py
@@ -1,4 +1,4 @@
1
-__version__ = "3.22.29"
+__version__ = "3.22.30"
2
3
__all__ = [
4
"Backend", "BackendV2",
@@ -2388,8 +2388,8 @@ def tensorrt_rtx(
2388
if not os.access(fp16_network_path, mode=os.R_OK):
2389
import onnx
2390
try:
2391
- from modelopt.onnx.autocast import convert_to_mixed_precision
2392
- model = convert_to_mixed_precision(network_path, keep_io_types=not fp16_io)
+ from modelopt.onnx.autocast import convert_to_f16
+ model = convert_to_f16(network_path, keep_io_types=not fp16_io)
2393
except Exception:
2394
from onnxconverter_common.float16 import convert_float_to_float16
2395
model = onnx.load(network_path)
0 commit comments