compute-runtime/shared/offline_compiler/source/decoder/translate_platform.cpp

17 lines
385 B
C++

/*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/offline_compiler/source/decoder/translate_platform_base.h"
iga_gen_t translateToIgaGen(PRODUCT_FAMILY productFamily) {
return translateToIgaGenBase(productFamily);
}
iga_gen_t translateToIgaGen(GFXCORE_FAMILY coreFamily) {
return translateToIgaGenBase(coreFamily);
}