2018-07-14 00:50:55 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2018 Intel Corporation
|
2018-07-14 00:50:55 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-07-14 00:50:55 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
2018-08-17 19:38:09 +08:00
|
|
|
#include <utility>
|
2018-07-14 00:50:55 +08:00
|
|
|
|
|
|
|
namespace OCLRT {
|
|
|
|
class GraphicsAllocation;
|
|
|
|
using ResidencyContainer = std::vector<GraphicsAllocation *>;
|
2018-08-17 19:38:09 +08:00
|
|
|
using AllocationView = std::pair<uint64_t /*address*/, size_t /*size*/>;
|
2018-07-14 00:50:55 +08:00
|
|
|
|
|
|
|
} // namespace OCLRT
|