mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 20:39:56 +08:00
fix: pass Sku/Wa tables for gmm without additional translations on Windows
Related-To: NEO-10623 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
8d342d2633
commit
8ae4a3bc7a
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2022 Intel Corporation
|
||||
* Copyright (C) 2018-2024 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -26,9 +26,9 @@ GmmClientContext::GmmClientContext(const RootDeviceEnvironment &rootDeviceEnviro
|
||||
GMM_INIT_IN_ARGS inArgs{};
|
||||
GMM_INIT_OUT_ARGS outArgs{};
|
||||
|
||||
auto gtSystemInfo = hardwareInfo->gtSystemInfo;
|
||||
const auto >SystemInfo = hardwareInfo->gtSystemInfo;
|
||||
inArgs.ClientType = GMM_CLIENT::GMM_OCL_VISTA;
|
||||
inArgs.pGtSysInfo = >SystemInfo;
|
||||
inArgs.pGtSysInfo = const_cast<GT_SYSTEM_INFO *>(>SystemInfo);
|
||||
inArgs.pSkuTable = &gmmFtrTable;
|
||||
inArgs.pWaTable = &gmmWaTable;
|
||||
inArgs.Platform = hardwareInfo->platform;
|
||||
|
||||
Reference in New Issue
Block a user