Closed cardboardcode closed 2 years ago
The onnxruntime EPD still currently depends on is 1.4.0
.
To resolve this, an simple edit in the onnxruntime installation folder needs to be done (strangely):
nano ~/onnxruntime/onnxruntime/test/providers/cpu/controlflow/loop_test.cc
Include #include<thread>
into ~/onnxruntime/onnxruntime/test/providers/cpu/controlflow/loop_test.cc
https://stackoverflow.com/questions/12523122/what-is-glibcxx-use-nanosleep-all-about
Issue Description
The following error is generated when running
bash install_dep_cpu.bash
in an attempt to install EPD dependencies:Source of Error
For now, the source of error can be narrowed down to a potential discrepancy in the CPP library where
std::thread
is different. This could be solved by using a more recent version of onnxruntime or downgrading the cmake.