43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/device_bitfield.h"
|
|
#include "shared/source/helpers/vec.h"
|
|
|
|
#include <functional>
|
|
|
|
namespace NEO {
|
|
|
|
class Device;
|
|
class GraphicsAllocation;
|
|
|
|
enum class BlitOperationResult {
|
|
unsupported,
|
|
fail,
|
|
success,
|
|
gpuHang
|
|
};
|
|
|
|
namespace BlitHelperFunctions {
|
|
using BlitMemoryToAllocationFunc = std::function<BlitOperationResult(const Device &device,
|
|
GraphicsAllocation *memory,
|
|
size_t offset,
|
|
const void *hostPtr,
|
|
const Vec3<size_t> &size)>;
|
|
extern BlitMemoryToAllocationFunc blitMemoryToAllocation;
|
|
} // namespace BlitHelperFunctions
|
|
|
|
struct BlitHelper {
|
|
static BlitOperationResult blitMemoryToAllocation(const Device &device, GraphicsAllocation *memory, size_t offset, const void *hostPtr,
|
|
const Vec3<size_t> &size);
|
|
static BlitOperationResult blitMemoryToAllocationBanks(const Device &device, GraphicsAllocation *memory, size_t offset, const void *hostPtr,
|
|
const Vec3<size_t> &size, DeviceBitfield memoryBanks);
|
|
};
|
|
|
|
} // namespace NEO
|