mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
Related-To: NEO-3007 Change-Id: I5c8ed5cd9a3f78b3b67a63e9281f6cc6af4ffd1b Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
15 lines
273 B
C++
15 lines
273 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "mock_gmm_memory.h"
|
|
|
|
namespace NEO {
|
|
GmmMemory *GmmMemory::create(GmmClientContext *gmmClientContext) {
|
|
return new MockGmmMemory(gmmClientContext);
|
|
}
|
|
} // namespace NEO
|