Skip to content

Commit

Permalink
Update error message when unpacking ONNX .dlls in Java on Windows mac…
Browse files Browse the repository at this point in the history
…hines
  • Loading branch information
retiutut committed Oct 19, 2023
1 parent 0c29392 commit d85ed25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private interface DllInterface extends Library
JarHelper.unpack_from_jar ("onnxruntime_arm64.dll");
break;
default:
throw new RuntimeException ("Unsupported Windows architecture: " + arch);
System.err.println("Unsupported Windows architecture: " + arch);
}
} else if (SystemUtils.IS_OS_MAC)
{
Expand Down

0 comments on commit d85ed25

Please sign in to comment.