mirror of
https://github.com/intel/compute-runtime.git
synced 2025-11-15 10:14:56 +08:00
34 lines
656 B
C++
34 lines
656 B
C++
/*
|
|
* Copyright (C) 2019-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/hash.h"
|
|
#include "shared/source/sku_info/sku_info_base.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct FeatureTable : FeatureTableBase {
|
|
uint64_t asHash() const {
|
|
Hash hash;
|
|
|
|
hash.update(reinterpret_cast<const char *>(&packed), sizeof(packed));
|
|
|
|
return hash.finish();
|
|
}
|
|
};
|
|
|
|
struct WorkaroundTable : WorkaroundTableBase {
|
|
uint64_t asHash() const {
|
|
Hash hash;
|
|
|
|
hash.update(reinterpret_cast<const char *>(&packed), sizeof(packed));
|
|
|
|
return hash.finish();
|
|
}
|
|
};
|
|
} // namespace NEO
|