mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
25 lines
452 B
C
25 lines
452 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2025 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "common/StateSaveAreaHeader.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
// NOLINTBEGIN
|
||
|
|
struct StateSaveAreaHeader {
|
||
|
|
struct SIP::StateSaveArea versionHeader;
|
||
|
|
union {
|
||
|
|
struct SIP::intelgt_state_save_area regHeader;
|
||
|
|
struct SIP::intelgt_state_save_area_V3 regHeaderV3;
|
||
|
|
uint64_t totalWmtpDataSize;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
// NOLINTEND
|
||
|
|
} // namespace NEO
|