/* * Copyright (C) 2018-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "gmm_memory.h" namespace NEO { GmmMemory *GmmMemory::create(GmmClientContext *gmmClientContext) { return new GmmMemory(gmmClientContext); } } // namespace NEO