mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
22 lines
312 B
C++
22 lines
312 B
C++
/*
|
|
* Copyright (C) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace aub_stream {
|
|
|
|
struct SharedMemoryInfo {
|
|
uint8_t *sysMemBase{};
|
|
uint64_t sysMemSize{};
|
|
|
|
uint8_t *localMemBase{};
|
|
uint64_t localMemSize{};
|
|
};
|
|
|
|
} // namespace aub_stream
|