mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-31 23:27:43 +00:00
Fix typing error (#9316)
This commit is contained in:
parent
79e736ed25
commit
03276527b3
1 changed files with 1 additions and 1 deletions
|
|
@ -276,7 +276,7 @@ def test_ort(args, device):
|
|||
enable_all_optimization=True,
|
||||
num_threads=num_threads)
|
||||
if session is None:
|
||||
raise RuntimeError(f"Failed to create ORT sesssion from ONNX file {onnx_model_path}")
|
||||
raise RuntimeError(f"Failed to create ORT session from ONNX file {onnx_model_path}")
|
||||
|
||||
description = onnx_model_path
|
||||
if (os.environ.get('ORT_LONGFORMER_COMPACT_MEMORY', '0') == "1"):
|
||||
|
|
|
|||
Loading…
Reference in a new issue