mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
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
|