We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c6de76 commit b574cc5Copy full SHA for b574cc5
dpnp/backend/src/queue_sycl.cpp
@@ -177,7 +177,8 @@ void backend_sycl::backend_sycl_queue_init(QueueOptions selector)
177
#endif
178
179
std::chrono::high_resolution_clock::time_point t3 = std::chrono::high_resolution_clock::now();
180
- dpnp_kernels_link();
+ // Remove pre-link kernel library at startup time
181
+ // dpnp_kernels_link();
182
std::chrono::high_resolution_clock::time_point t4 = std::chrono::high_resolution_clock::now();
183
std::chrono::duration<double> time_kernels_link =
184
std::chrono::duration_cast<std::chrono::duration<double>>(t4 - t3);
0 commit comments