Skip to content

Commit 23d0a77

Browse files
committed
Address feedback
1 parent 326ef2c commit 23d0a77

1 file changed

Lines changed: 3 additions & 18 deletions

File tree

src/libs/conduit/conduit_benchmark.hpp

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -62,24 +62,9 @@ inline
6262
std::vector<ExecConfig>
6363
get_exec_configs()
6464
{
65-
std::vector<ExecConfig> configs;
66-
const std::vector<std::string> locations = {"host"};
67-
68-
// All of the source = host configs come first, as an optimization to
69-
// only have to move test data to device memory once
70-
for (const auto &src_loc : locations)
71-
{
72-
for (const auto &exec_loc : locations)
73-
{
74-
for (const auto &output_loc : locations)
75-
{
76-
configs.push_back({src_loc,
77-
exec_loc,
78-
output_loc});
79-
}
80-
}
81-
}
82-
65+
// In the pre-device execution model world, we don't have the concept of
66+
// host vs device execution
67+
std::vector<ExecConfig> configs{{"host", "host", "host"}};
8368
return configs;
8469
}
8570

0 commit comments

Comments
 (0)