Skip to content

Commit

Permalink
add test for onnx import
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandre Eichenberger <alexe@us.ibm.com>
  • Loading branch information
AlexandreEichenberger committed Dec 3, 2024
1 parent 6939f8e commit 0ac4608
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion utils/RunONNXModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
import os
import sys
import argparse
import onnx
try:
import onnx
except ImportError:
print("Import of onnx package failed; please instal to use this script")
exit(1)
import time
import signal
import subprocess
Expand Down

0 comments on commit 0ac4608

Please sign in to comment.