mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
Cleaned up files: opencl/source/command_queue/csr_selection_args.h opencl/source/event/event.h shared/source/helpers/engine_control.h shared/source/sku_info/definitions/sku_info.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
22 lines
345 B
C++
22 lines
345 B
C++
/*
|
|
* Copyright (C) 2019-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/sku_info/sku_info_base.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct FeatureTable : FeatureTableBase {
|
|
uint64_t asHash() const;
|
|
};
|
|
|
|
struct WorkaroundTable : WorkaroundTableBase {
|
|
uint64_t asHash() const;
|
|
};
|
|
|
|
} // namespace NEO
|