Skip to content

Commit

Permalink
enable overload
Browse files Browse the repository at this point in the history
Addresses #653.
  • Loading branch information
PeiMu committed May 17, 2023
1 parent 3eb50fb commit d0d2af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/newton/llvm-ir/performance_test/auto_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ std::pair<double, std::vector<double>> processDataTimer(const std::string test_c
std::vector<double> function_results;

// perf command
std::string cmd = "bash -c 'make " + test_case + " >& compile.log'";
std::string cmd = "bash -c 'ENABLE_OVERLOAD=true make " + test_case + " >& compile.log'";
int command_return = system(cmd.c_str());
if (command_return != 0) {
return std::make_pair(0, std::vector<double>(0));
Expand Down

0 comments on commit d0d2af7

Please sign in to comment.