File tree Expand file tree Collapse file tree
tasks/all/example/func_tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,7 +59,10 @@ def __source_script(script_path):
5959 return {}
6060
6161 def setup_env (self ):
62- self .work_dir = Path (self .__get_project_path ()) / "install/bin"
62+ if platform .system () == "Windows" :
63+ self .work_dir = Path (self .__get_project_path ()) / "install/bin"
64+ else :
65+ self .work_dir = Path (self .__get_project_path ()) / "build/bin"
6366
6467 @staticmethod
6568 def __run_exec (command ):
Original file line number Diff line number Diff line change 33#include < cstddef>
44#include < cstdint>
55#include < memory>
6+ #include < stb_library.hpp>
7+ #include < string>
68#include < vector>
79
810#include " all/example/include/ops_all.hpp"
911#include " core/task/include/task.hpp"
1012#include " core/util/include/util.hpp"
1113
12- #include < stb_library.hpp>
13- #include < string>
14-
1514TEST (nesterov_a_test_task_all, test_matmul_50) {
1615 constexpr size_t kCount = 50 ;
1716
You can’t perform that action at this time.
0 commit comments