mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
25 lines
407 B
C
25 lines
407 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2022 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
struct HardwareIpVersion {
|
||
|
|
union {
|
||
|
|
uint32_t value;
|
||
|
|
struct
|
||
|
|
{
|
||
|
|
uint32_t revision : 6;
|
||
|
|
uint32_t reserved : 8;
|
||
|
|
uint32_t release : 8;
|
||
|
|
uint32_t architecture : 10;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
} // namespace NEO
|