Skip to content

Commit 5f98c48

Browse files
authored
[Matrix][E2E] Include chrono in Matrix test on Windows (#17885)
Fixes #17516 Tests that include `joint_matrix_bf16_fill_k_cache_impl.hpp` may fail on windows with the following message `error: no member named 'high_resolution_clock' in namespace 'std::chrono'`. Including chrono resolves this.
1 parent 3469de7 commit 5f98c48

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

sycl/test-e2e/Matrix/Inputs/joint_matrix_bf16_fill_k_cache_impl.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
#include <random>
1010
#include <sycl/usm.hpp>
1111

12+
#ifdef _WIN32
13+
#include <chrono>
14+
#endif
15+
1216
#ifdef SLM
1317
#include "slm_utils.hpp"
1418
#endif

0 commit comments

Comments
 (0)