@@ -8595,10 +8595,10 @@ prefetch(const T *p, simd<OffsetT, N / VS> byte_offsets, simd_mask<N / VS> mask,
8595
8595
8596
8596
constexpr auto L1Hint =
8597
8597
detail::getPropertyValue<PropertyListT, cache_hint_L1_key>(
8598
- cache_hint::uncached );
8598
+ cache_hint::none );
8599
8599
constexpr auto L2Hint =
8600
8600
detail::getPropertyValue<PropertyListT, cache_hint_L2_key>(
8601
- cache_hint::cached );
8601
+ cache_hint::none );
8602
8602
detail::prefetch_impl<T, VS, detail::lsc_data_size::default_size, L1Hint,
8603
8603
L2Hint>(p, byte_offsets, mask);
8604
8604
}
@@ -8769,10 +8769,10 @@ prefetch(const T *p, OffsetT byte_offset, simd_mask<1> mask,
8769
8769
PropertyListT props = {}) {
8770
8770
constexpr auto L1Hint =
8771
8771
detail::getPropertyValue<PropertyListT, cache_hint_L1_key>(
8772
- cache_hint::uncached );
8772
+ cache_hint::none );
8773
8773
constexpr auto L2Hint =
8774
8774
detail::getPropertyValue<PropertyListT, cache_hint_L2_key>(
8775
- cache_hint::cached );
8775
+ cache_hint::none );
8776
8776
detail::prefetch_impl<T, VS, detail::lsc_data_size::default_size, L1Hint,
8777
8777
L2Hint>(p, byte_offset, mask);
8778
8778
}
@@ -8931,10 +8931,10 @@ prefetch(AccessorT acc, simd<OffsetT, N / VS> byte_offsets,
8931
8931
8932
8932
constexpr auto L1Hint =
8933
8933
detail::getPropertyValue<PropertyListT, cache_hint_L1_key>(
8934
- cache_hint::uncached );
8934
+ cache_hint::none );
8935
8935
constexpr auto L2Hint =
8936
8936
detail::getPropertyValue<PropertyListT, cache_hint_L2_key>(
8937
- cache_hint::cached );
8937
+ cache_hint::none );
8938
8938
detail::prefetch_impl<T, VS, detail::lsc_data_size::default_size, L1Hint,
8939
8939
L2Hint>(acc, byte_offsets, mask);
8940
8940
#endif // __ESIMD_FORCE_STATELESS_MEM
@@ -9130,10 +9130,10 @@ prefetch(AccessorT acc, OffsetT byte_offset, simd_mask<1> mask,
9130
9130
#else
9131
9131
constexpr auto L1Hint =
9132
9132
detail::getPropertyValue<PropertyListT, cache_hint_L1_key>(
9133
- cache_hint::uncached );
9133
+ cache_hint::none );
9134
9134
constexpr auto L2Hint =
9135
9135
detail::getPropertyValue<PropertyListT, cache_hint_L2_key>(
9136
- cache_hint::cached );
9136
+ cache_hint::none );
9137
9137
detail::prefetch_impl<T, VS, detail::lsc_data_size::default_size, L1Hint,
9138
9138
L2Hint>(acc, byte_offset, mask);
9139
9139
#endif // __ESIMD_FORCE_STATELESS_MEM
0 commit comments