2018-08-27 12:11:07 +02:00
|
|
|
/*
|
2023-02-28 13:26:21 +00:00
|
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
2018-08-27 12:11:07 +02:00
|
|
|
*
|
2018-09-18 16:45:45 -07:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-08-27 12:11:07 +02:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-02-28 13:26:21 +00:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2023-02-28 13:26:21 +00:00
|
|
|
struct HardwareInfo;
|
2018-09-18 16:45:45 -07:00
|
|
|
enum class TestMode { NotSpecified,
|
|
|
|
|
UnitTests,
|
|
|
|
|
AubTests,
|
|
|
|
|
AubTestsWithTbx,
|
|
|
|
|
TbxTests };
|
|
|
|
|
|
|
|
|
|
extern TestMode testMode;
|
2023-02-28 13:26:21 +00:00
|
|
|
|
|
|
|
|
void adjustHwInfoForTests(HardwareInfo &hwInfoForTests, uint32_t euPerSubSlice, uint32_t sliceCount, uint32_t subSlicePerSliceCount, int dieRecovery);
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|