Add setDevice to try and initialize the context on cuda

This commit is contained in:
Paul
2020-02-10 13:37:45 -06:00
parent d77ede7015
commit 29a257d79b
@@ -127,6 +127,7 @@ void run_multi_threads(uint32_t n) {
std::vector<joinable_thread> threads;
for (uint32_t i = 0; i < n; i++) {
threads.emplace_back(std::thread{[=, &mf] {
hipSetDevice(0);
mf[i] = load();
}});
}