mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
- fill AllocationData in one place - remove allocateGraphicsMemoryForSVM function - refactor SVM manager tests Change-Id: I6f4ecd70503da8031cced50ea98a54162fd8e5d3 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
17 lines
373 B
C++
17 lines
373 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/memory_manager/svm_memory_manager.h"
|
|
namespace OCLRT {
|
|
struct MockSVMAllocsManager : SVMAllocsManager {
|
|
|
|
using SVMAllocsManager::memoryManager;
|
|
using SVMAllocsManager::SVMAllocs;
|
|
using SVMAllocsManager::SVMAllocsManager;
|
|
};
|
|
} // namespace OCLRT
|