17 lines
366 B
C++
17 lines
366 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "offline_compiler/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);
|
|
}
|