compute-runtime/unit_tests/mocks/mock_gmm_memory_base.cpp

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