Skip to content

Commit b574cc5

Browse files
authored
Remove pre-link kernel library at startup time (#647)
Remove pre-link kernel library at startup time
1 parent 2c6de76 commit b574cc5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dpnp/backend/src/queue_sycl.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ void backend_sycl::backend_sycl_queue_init(QueueOptions selector)
177177
#endif
178178

179179
std::chrono::high_resolution_clock::time_point t3 = std::chrono::high_resolution_clock::now();
180-
dpnp_kernels_link();
180+
// Remove pre-link kernel library at startup time
181+
// dpnp_kernels_link();
181182
std::chrono::high_resolution_clock::time_point t4 = std::chrono::high_resolution_clock::now();
182183
std::chrono::duration<double> time_kernels_link =
183184
std::chrono::duration_cast<std::chrono::duration<double>>(t4 - t3);

0 commit comments

Comments
 (0)