mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-26 03:00:54 +00:00
Fix custom op test failure (#3525)
This commit is contained in:
parent
bc9a199b16
commit
b63349c8d6
1 changed files with 1 additions and 1 deletions
|
|
@ -346,7 +346,7 @@ TEST(CApiTest, DISABLED_test_custom_op_library) {
|
|||
#elif defined(__APPLE__)
|
||||
lib_name = "libcustom_op_library.dylib";
|
||||
#else
|
||||
lib_name = "libcustom_op_library.so";
|
||||
lib_name = "./libcustom_op_library.so";
|
||||
#endif
|
||||
|
||||
TestInference<PATH_TYPE, int32_t>(*ort_env, CUSTOM_OP_LIBRARY_TEST_MODEL_URI, inputs, "output", expected_dims_y, expected_values_y, 0, nullptr, lib_name.c_str());
|
||||
|
|
|
|||
Loading…
Reference in a new issue