mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
19 lines
351 B
C++
19 lines
351 B
C++
/*
|
|
* Copyright (C) 2022-2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
struct HardwareInfo;
|
|
|
|
constexpr inline uint32_t ocl30ApiVersion = 300;
|
|
|
|
template <typename IgcPlatformType>
|
|
void populateIgcPlatform(IgcPlatformType &igcPlatform, const HardwareInfo &hwInfo);
|
|
} // namespace NEO
|