20 lines
301 B
C
20 lines
301 B
C
![]() |
/*
|
||
|
* Copyright (C) 2020 Intel Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <cinttypes>
|
||
|
|
||
|
namespace NEO {
|
||
|
struct DebugData {
|
||
|
uint32_t vIsaSize = 0;
|
||
|
uint32_t genIsaSize = 0;
|
||
|
const char *vIsa = nullptr;
|
||
|
const char *genIsa = nullptr;
|
||
|
};
|
||
|
} // namespace NEO
|