We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9def1e9 commit aa82805Copy full SHA for aa82805
src/plugins/intel_gpu/tests/unit/test_cases/paged_attention_gpu_test.cpp
@@ -398,9 +398,9 @@ struct PagedAttentionManager {
398
399
namespace std {
400
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);
+ struct hash<ov::float16> {
+ uint64_t operator()(const ov::float16 __val) const {
+ return std::hash<float>()(__val);
404
}
405
};
406
0 commit comments