Files
compute-runtime/shared/source/sku_info/definitions/sku_info.h
Bartosz Dunajski 014fd1fb26 Enable BCS by default on supported platforms
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
2022-01-10 15:36:48 +01:00

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