mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 23:56:39 +08:00
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
|