Skip to content

Commit aa82805

Browse files
authored
Update paged_attention_gpu_test.cpp
1 parent 9def1e9 commit aa82805

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/plugins/intel_gpu/tests/unit/test_cases/paged_attention_gpu_test.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -398,9 +398,9 @@ struct PagedAttentionManager {
398398

399399
namespace std {
400400
template <>
401-
struct hash<ov::float16> : public __hash_base<size_t, ov::float16> {
402-
size_t operator()(ov::float16 __val) const noexcept {
403-
return std::hash<float>{}(__val);
401+
struct hash<ov::float16> {
402+
uint64_t operator()(const ov::float16 __val) const {
403+
return std::hash<float>()(__val);
404404
}
405405
};
406406
}

0 commit comments

Comments
 (0)