Skip to content

Commit 75de7cf

Browse files
author
Christos Konstantinos Matzoros
committed
Minor bug fix (adding ifdef eigen for a part of a runner)
1 parent d784f84 commit 75de7cf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/test_suite_runner/BspScheduleTestSuiteRunner.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,14 @@ class BspScheduleTestSuiteRunner : public AbstractTestSuiteRunner<BspSchedule<co
5555
this->active_stats_modules.push_back(std::make_unique<BasicBspStatsModule<BspSchedule<concrete_graph_t>>>());
5656
} else if (module_name == "BspCommStats") {
5757
this->active_stats_modules.push_back(std::make_unique<BspCommStatsModule<concrete_graph_t>>());
58+
#ifdef EIGEN_FOUND
5859
} else if (module_name == "BspSptrsvStats") {
5960
this->active_stats_modules.push_back(std::make_unique<BspSptrsvStatsModule<BspSchedule<concrete_graph_t>>>(NO_PERMUTE));
6061
} else if (module_name == "BspSptrsvPermLoopProcessorsStats") {
6162
this->active_stats_modules.push_back(std::make_unique<BspSptrsvStatsModule<BspSchedule<concrete_graph_t>>>(LOOP_PROCESSORS));
6263
} else if (module_name == "BspSptrsvPermSnakeProcessorsStats") {
6364
this->active_stats_modules.push_back(std::make_unique<BspSptrsvStatsModule<BspSchedule<concrete_graph_t>>>(SNAKE_PROCESSORS));
65+
#endif
6466
} else if (module_name == "GraphStats") {
6567
this->active_stats_modules.push_back(
6668
std::make_unique<GraphStatsModule<BspSchedule<concrete_graph_t>>>());

0 commit comments

Comments
 (0)