mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00
24 lines
534 B
C++
24 lines
534 B
C++
/*
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
struct HardwareInfo;
|
|
enum class TestMode { NotSpecified,
|
|
UnitTests,
|
|
AubTests,
|
|
AubTestsWithTbx,
|
|
TbxTests };
|
|
|
|
extern TestMode testMode;
|
|
|
|
void adjustHwInfoForTests(HardwareInfo &hwInfoForTests, uint32_t euPerSubSlice, uint32_t sliceCount, uint32_t subSlicePerSliceCount, int dieRecovery);
|
|
} // namespace NEO
|