mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
20 lines
431 B
C++
20 lines
431 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/gmm_helper/gmm_interface.h"
|
|
namespace NEO {
|
|
namespace GmmInterface {
|
|
GMM_STATUS initialize(GMM_INIT_IN_ARGS *pInArgs, GMM_INIT_OUT_ARGS *pOutArgs) {
|
|
return InitializeGmm(pInArgs, pOutArgs);
|
|
}
|
|
|
|
void destroy(GMM_INIT_OUT_ARGS *pInArgs) {
|
|
GmmAdapterDestroy(pInArgs);
|
|
}
|
|
} // namespace GmmInterface
|
|
} // namespace NEO
|