mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
refactor: remove cl pipe related logic
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
a017025e67
commit
374863ba08
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2024 Intel Corporation
|
||||
* Copyright (C) 2018-2025 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -88,13 +88,6 @@ void getOpenclCFeaturesList(const HardwareInfo &hwInfo, OpenClCFeaturesContainer
|
||||
}
|
||||
}
|
||||
|
||||
auto forcePipeSupport = debugManager.flags.ForcePipeSupport.get();
|
||||
if ((hwInfo.capabilityTable.supportsPipes && (forcePipeSupport == -1)) ||
|
||||
(forcePipeSupport == 1)) {
|
||||
strcpy_s(openClCFeature.name, CL_NAME_VERSION_MAX_NAME_SIZE, "__opencl_c_pipes");
|
||||
openclCFeatures.push_back(openClCFeature);
|
||||
}
|
||||
|
||||
auto forceFp64Support = debugManager.flags.OverrideDefaultFP64Settings.get();
|
||||
if ((hwInfo.capabilityTable.ftrSupportsFP64 && (forceFp64Support == -1)) ||
|
||||
(forceFp64Support == 1)) {
|
||||
|
||||
Reference in New Issue
Block a user