mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 16:24:18 +08:00
Change-Id: Ia07bbb7d53dc2a5f14ba81b1074dff4379742c0c Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
17 lines
371 B
C++
17 lines
371 B
C++
/*
|
|
* Copyright (C) 2019-2020 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);
|
|
}
|