Home
last modified time | relevance | path

Searched refs:hardwareInfo (Results 1 – 25 of 105) sorted by relevance

12345

/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/gen12lp/tgllp/
H A Dtest_hw_helper_tgllp.cpp15 hardwareInfo.featureTable.flags.ftrCCSNode = true; in TGLLPTEST_F()
16 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hardwareInfo); in TGLLPTEST_F()
19 helper.adjustDefaultEngineType(&hardwareInfo); in TGLLPTEST_F()
25 hardwareInfo.featureTable.flags.ftrCCSNode = true; in TGLLPTEST_F()
26 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A1, hardwareInfo); in TGLLPTEST_F()
29 helper.adjustDefaultEngineType(&hardwareInfo); in TGLLPTEST_F()
35 hardwareInfo.featureTable.flags.ftrCCSNode = true; in TGLLPTEST_F()
36 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hardwareInfo); in TGLLPTEST_F()
37 hardwareInfo.platform.eProductFamily = IGFX_UNKNOWN; in TGLLPTEST_F()
40 helper.adjustDefaultEngineType(&hardwareInfo); in TGLLPTEST_F()
[all …]
/dports/science/gromacs/gromacs-2021.4/src/gromacs/hardware/
H A Ddetecthardware.cpp296 hardwareInfo->nphysicalnode = 1; in gmx_collect_hardware_mpi()
297 hardwareInfo->ncore_tot = ncore; in gmx_collect_hardware_mpi()
298 hardwareInfo->ncore_min = ncore; in gmx_collect_hardware_mpi()
299 hardwareInfo->ncore_max = ncore; in gmx_collect_hardware_mpi()
300 hardwareInfo->nhwthread_tot = hardwareInfo->nthreads_hw_avail; in gmx_collect_hardware_mpi()
301 hardwareInfo->nhwthread_min = hardwareInfo->nthreads_hw_avail; in gmx_collect_hardware_mpi()
302 hardwareInfo->nhwthread_max = hardwareInfo->nthreads_hw_avail; in gmx_collect_hardware_mpi()
308 hardwareInfo->bIdenticalGPUs = TRUE; in gmx_collect_hardware_mpi()
373hardwareInfo->nthreads_hw_avail = hardwareInfo->hardwareTopology->machine().logicalProcessorCount; in gmx_detect_hardware()
384 gmx_collect_hardware_mpi(*hardwareInfo->cpuInfo, physicalNodeComm, hardwareInfo.get()); in gmx_detect_hardware()
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/xe_hpg_core/dg2/
H A Dhw_helper_tests_dg2.cpp27 const auto &hwHelper = HwHelper::get(hardwareInfo.platform.eRenderCoreFamily); in DG2TEST_F()
28 const auto &hwInfoConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); in DG2TEST_F()
31 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(stepping, hardwareInfo); in DG2TEST_F()
65 EXPECT_FALSE(hwHelper.isWorkaroundRequired(REVISION_A1, REVISION_A0, hardwareInfo)); in DG2TEST_F()
66 EXPECT_FALSE(hwHelper.isWorkaroundRequired(REVISION_B, REVISION_A0, hardwareInfo)); in DG2TEST_F()
67 EXPECT_FALSE(hwHelper.isWorkaroundRequired(REVISION_C, REVISION_A0, hardwareInfo)); in DG2TEST_F()
68 EXPECT_FALSE(hwHelper.isWorkaroundRequired(REVISION_B, REVISION_A1, hardwareInfo)); in DG2TEST_F()
69 EXPECT_FALSE(hwHelper.isWorkaroundRequired(REVISION_C, REVISION_A1, hardwareInfo)); in DG2TEST_F()
70 EXPECT_FALSE(hwHelper.isWorkaroundRequired(REVISION_C, REVISION_B, hardwareInfo)); in DG2TEST_F()
72 EXPECT_FALSE(hwHelper.isWorkaroundRequired(REVISION_A0, REVISION_D, hardwareInfo)); in DG2TEST_F()
[all …]
H A Dtest_device_caps_dg2.cpp33 const auto &hwInfoConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); in DG2TEST_F()
39 myPlatform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hardwareInfo); in DG2TEST_F()
51 const auto &hwInfoConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); in DG2TEST_F()
56 myPlatform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hardwareInfo); in DG2TEST_F()
67 const auto &hwInfoConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); in DG2TEST_F()
68 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hardwareInfo); in DG2TEST_F()
69 EXPECT_EQ(64u, hwInfoConfig.getMaxThreadsForWorkgroupInDSSOrSS(hardwareInfo, 64u, 64u)); in DG2TEST_F()
71 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A1, hardwareInfo); in DG2TEST_F()
72 …uint32_t numThreadsPerEU = hardwareInfo.gtSystemInfo.ThreadCount / hardwareInfo.gtSystemInfo.EUCou… in DG2TEST_F()
73 …EXPECT_EQ(64u * numThreadsPerEU, hwInfoConfig.getMaxThreadsForWorkgroupInDSSOrSS(hardwareInfo, 64u… in DG2TEST_F()
H A Dtest_hw_info_config_dg2.cpp43 auto hardwareInfo = *defaultHwInfo; in DG2TEST_F() local
44 hardwareInfo.featureTable.flags.ftrCCSNode = true; in DG2TEST_F()
48hardwareInfo.capabilityTable.defaultEngineType = defaultHwInfo->capabilityTable.defaultEngineType; in DG2TEST_F()
49 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hardwareInfo); in DG2TEST_F()
50 hwHelper.adjustDefaultEngineType(&hardwareInfo); in DG2TEST_F()
51 EXPECT_EQ(aub_stream::ENGINE_RCS, hardwareInfo.capabilityTable.defaultEngineType); in DG2TEST_F()
53hardwareInfo.capabilityTable.defaultEngineType = defaultHwInfo->capabilityTable.defaultEngineType; in DG2TEST_F()
54 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_B, hardwareInfo); in DG2TEST_F()
55 hwHelper.adjustDefaultEngineType(&hardwareInfo); in DG2TEST_F()
56 EXPECT_EQ(aub_stream::ENGINE_CCS, hardwareInfo.capabilityTable.defaultEngineType); in DG2TEST_F()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/gen12lp/dg1/
H A Dhw_helper_tests_dg1.cpp19 hardwareInfo.featureTable.flags.ftrCCSNode = true; in DG1TEST_F()
20 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hardwareInfo); in DG1TEST_F()
22 helper.adjustDefaultEngineType(&hardwareInfo); in DG1TEST_F()
23 EXPECT_EQ(aub_stream::ENGINE_RCS, hardwareInfo.capabilityTable.defaultEngineType); in DG1TEST_F()
29 hardwareInfo.featureTable.flags.ftrCCSNode = true; in DG1TEST_F()
30 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_B, hardwareInfo); in DG1TEST_F()
32 helper.adjustDefaultEngineType(&hardwareInfo); in DG1TEST_F()
33 EXPECT_EQ(aub_stream::ENGINE_RCS, hardwareInfo.capabilityTable.defaultEngineType); in DG1TEST_F()
37 const auto &hwHelper = HwHelper::get(hardwareInfo.platform.eRenderCoreFamily); in DG1TEST_F()
38 const auto &hwInfoConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); in DG1TEST_F()
[all …]
H A Dtest_hw_info_config_dg1.cpp106 const HardwareInfo &hardwareInfo = DG1::hwInfo; in DG1TEST_F() local
107 EXPECT_TRUE(hardwareInfo.capabilityTable.ftrSvm); in DG1TEST_F()
112 const auto &hardwareInfo = DG1::hwInfo; in DG1TEST_F() local
114 EXPECT_TRUE(hwInfoConfig.obtainBlitterPreference(hardwareInfo)); in DG1TEST_F()
119 const auto &hardwareInfo = DG1::hwInfo; in DG1TEST_F() local
121 EXPECT_FALSE(hwInfoConfig.isBlitterFullySupported(hardwareInfo)); in DG1TEST_F()
126 auto hardwareInfo = *defaultHwInfo; in DG1TEST_F() local
128 hardwareInfo.capabilityTable.blitterOperationsSupported = false; in DG1TEST_F()
129 hwInfoConfig.configureHardwareCustom(&hardwareInfo, nullptr); in DG1TEST_F()
131 EXPECT_TRUE(hardwareInfo.capabilityTable.blitterOperationsSupported); in DG1TEST_F()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/gen12lp/rkl/
H A Dtest_hw_helper_rkl.cpp14 const auto &hwInfoConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); in RKLTEST_F()
15 hardwareInfo.featureTable.flags.ftrCCSNode = true; in RKLTEST_F()
16 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hardwareInfo); in RKLTEST_F()
19 helper.adjustDefaultEngineType(&hardwareInfo); in RKLTEST_F()
20 EXPECT_EQ(aub_stream::ENGINE_RCS, hardwareInfo.capabilityTable.defaultEngineType); in RKLTEST_F()
24 const auto &hwInfoConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); in RKLTEST_F()
25 hardwareInfo.featureTable.flags.ftrCCSNode = true; in RKLTEST_F()
26 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_B, hardwareInfo); in RKLTEST_F()
29 helper.adjustDefaultEngineType(&hardwareInfo); in RKLTEST_F()
30 EXPECT_EQ(aub_stream::ENGINE_RCS, hardwareInfo.capabilityTable.defaultEngineType); in RKLTEST_F()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/xe_hp_core/
H A Dhw_helper_tests_xe_hp_core.cpp109 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(stepping, hardwareInfo); in XE_HP_CORE_TEST_F()
129 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hardwareInfo); in XE_HP_CORE_TEST_F()
132 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_B, hardwareInfo); in XE_HP_CORE_TEST_F()
133 …uint32_t numThreadsPerEU = hardwareInfo.gtSystemInfo.ThreadCount / hardwareInfo.gtSystemInfo.EUCou… in XE_HP_CORE_TEST_F()
138 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in XE_HP_CORE_TEST_F()
153 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in XE_HP_CORE_TEST_F()
168 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in XE_HP_CORE_TEST_F()
182 hardwareInfo.featureTable.flags.ftrLocalMemory = false; in XE_HP_CORE_TEST_F()
296 HardwareInfo hardwareInfo = *defaultHwInfo; in XE_HP_CORE_TEST_F() local
334 HardwareInfo hardwareInfo = *defaultHwInfo; in XE_HP_CORE_TEST_F() local
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/gen12lp/dg1/linux/
H A Dhw_info_config_tests_dg1.cpp16 HwInfoConfig *hwInfoConfig = HwInfoConfig::get(hardwareInfo.platform.eProductFamily); in DG1TEST_F()
19 hardwareInfo.capabilityTable.defaultPreemptionMode = PreemptionMode::ThreadGroup; in DG1TEST_F()
20 PreemptionHelper::adjustDefaultPreemptionMode(hardwareInfo.capabilityTable, true, true, true); in DG1TEST_F()
22 hwInfoConfig->configureHardwareCustom(&hardwareInfo, &osIface); in DG1TEST_F()
23 EXPECT_FALSE(hardwareInfo.featureTable.flags.ftrGpGpuMidThreadLevelPreempt); in DG1TEST_F()
27 HwInfoConfig *hwInfoConfig = HwInfoConfig::get(hardwareInfo.platform.eProductFamily); in DG1TEST_F()
30 hwInfoConfig->configureHardwareCustom(&hardwareInfo, &osIface); in DG1TEST_F()
31 EXPECT_TRUE(hardwareInfo.capabilityTable.kmdNotifyProperties.enableKmdNotify); in DG1TEST_F()
32 EXPECT_EQ(300ll, hardwareInfo.capabilityTable.kmdNotifyProperties.delayKmdNotifyMicroseconds); in DG1TEST_F()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/test/common/fixtures/
H A Ddevice_fixture.cpp16 hardwareInfo = *defaultHwInfo; in SetUp()
17 SetUpImpl(&hardwareInfo); in SetUp()
20 void DeviceFixture::SetUpImpl(const NEO::HardwareInfo *hardwareInfo) { in SetUpImpl() argument
21 …pDevice = MockDevice::createWithNewExecutionEnvironment<MockDevice>(hardwareInfo, rootDeviceIndex); in SetUpImpl()
35 hardwareInfo = *defaultHwInfo; in createWithUsDeviceId()
36 hardwareInfo.platform.usDeviceID = usDeviceId; in createWithUsDeviceId()
37 return MockDevice::createWithNewExecutionEnvironment<MockDevice>(&hardwareInfo); in createWithUsDeviceId()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/helpers/
H A Dhw_helper_tests_pvc_and_later.cpp36 hardwareInfo.featureTable.flags.ftrCCSNode = false; in HWTEST2_F()
39 helper.adjustDefaultEngineType(&hardwareInfo); in HWTEST2_F()
62 auto &hwHelper = HwHelper::get(hardwareInfo.platform.eRenderCoreFamily); in HWTEST2_F()
65 auto expected = testInput.expectedThreadCountPerEu * hardwareInfo.gtSystemInfo.EUCount; in HWTEST2_F()
67 hardwareInfo.platform.eProductFamily, in HWTEST2_F()
69 hardwareInfo.gtSystemInfo.EUCount, in HWTEST2_F()
70 hardwareInfo.gtSystemInfo.ThreadCount / hardwareInfo.gtSystemInfo.EUCount); in HWTEST2_F()
76 auto &hwHelper = HwHelper::get(hardwareInfo.platform.eRenderCoreFamily); in HWTEST2_F()
125 auto &hwHelper = HwHelper::get(hardwareInfo.platform.eRenderCoreFamily); in HWTEST2_F()
144 const auto &hwHelper = HwHelper::get(hardwareInfo.platform.eRenderCoreFamily); in HWTEST2_F()
[all …]
H A Dhw_helper_tests_xehp_and_later.cpp45 hardwareInfo.featureTable.flags.ftrCCSNode = false; in HWCMDTEST_F()
48 helper.adjustDefaultEngineType(&hardwareInfo); in HWCMDTEST_F()
56 hardwareInfo.featureTable.flags.ftrCCSNode = true; in HWCMDTEST_F()
59 helper.adjustDefaultEngineType(&hardwareInfo); in HWCMDTEST_F()
64 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWCMDTEST_F()
67 EXPECT_TRUE(helper.isLocalMemoryEnabled(hardwareInfo)); in HWCMDTEST_F()
231 HardwareInfo hardwareInfo = *defaultHwInfo; in HWCMDTEST_F() local
273 HardwareInfo hardwareInfo = *defaultHwInfo; in HWCMDTEST_F() local
282 HardwareInfo hardwareInfo = *defaultHwInfo; in HWCMDTEST_F() local
415 HardwareInfo hardwareInfo = *defaultHwInfo; in HWCMDTEST_F() local
[all …]
H A Dhw_helper_tests_dg2_and_later.cpp27 HardwareInfo hardwareInfo = *defaultHwInfo; in HWTEST2_F() local
28 …nchronizationCommands<FamilyType>::getSizeForAdditonalSynchronization(hardwareInfo) > 0) ? true : … in HWTEST2_F()
32 hardwareInfo.featureTable.flags.ftrLocalMemory = ftrLocalMemory; in HWTEST2_F()
34 MemorySynchronizationCommands<FamilyType>::addPipeControlWA(stream, address, hardwareInfo); in HWTEST2_F()
36 … if (MemorySynchronizationCommands<FamilyType>::isPipeControlWArequired(hardwareInfo) == false) { in HWTEST2_F()
55 if (UnitTestHelper<FamilyType>::isAdditionalMiSemaphoreWaitRequired(hardwareInfo)) { in HWTEST2_F()
73 HardwareInfo hardwareInfo = *defaultHwInfo; in HWTEST2_F() local
74 hardwareInfo.featureTable.flags.ftrLocalMemory = ftrLocalMemory; in HWTEST2_F()
77 MemorySynchronizationCommands<FamilyType>::setPostSyncExtraProperties(args, hardwareInfo); in HWTEST2_F()
H A Dhw_helper_tests.cpp276 HardwareInfo hardwareInfo = *defaultHwInfo; in HWTEST_F() local
325 HardwareInfo hardwareInfo = *defaultHwInfo; in HWTEST_F() local
354 HardwareInfo hardwareInfo = *defaultHwInfo; in HWTEST_F() local
798 EXPECT_EQ(helper.isLocalMemoryEnabled(hardwareInfo), helper.getEnableLocalMemory(hardwareInfo)); in TEST_F()
949 hardwareInfo.platform.eProductFamily, in HWCMDTEST_F()
951 hardwareInfo.gtSystemInfo.EUCount, in HWCMDTEST_F()
952 hardwareInfo.gtSystemInfo.ThreadCount / hardwareInfo.gtSystemInfo.EUCount); in HWCMDTEST_F()
1095 HardwareInfo hardwareInfo = *defaultHwInfo; in HWTEST2_F() local
1109 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWTEST_F()
1123 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWTEST_F()
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/fixtures/
H A Dcl_device_fixture.cpp16 hardwareInfo = *defaultHwInfo; in SetUp()
17 SetUpImpl(&hardwareInfo); in SetUp()
20 void ClDeviceFixture::SetUpImpl(const NEO::HardwareInfo *hardwareInfo) { in SetUpImpl() argument
21 …pDevice = MockClDevice::createWithNewExecutionEnvironment<MockDevice>(hardwareInfo, rootDeviceInde… in SetUpImpl()
40 hardwareInfo = *defaultHwInfo; in createWithUsDeviceId()
41 hardwareInfo.platform.usDeviceID = usDeviceId; in createWithUsDeviceId()
42 … return MockDevice::createWithNewExecutionEnvironment<MockDevice>(&hardwareInfo, rootDeviceIndex); in createWithUsDeviceId()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/test/unit_test/command_stream/
H A Dtbx_command_stream_receiver_tests_xehp_and_later.cpp23 hardwareInfo = *defaultHwInfo; in setUpImpl()
24 hardwareInfoSetup[hardwareInfo.platform.eProductFamily](&hardwareInfo, true, 0); in setUpImpl()
25 hardwareInfo.gtSystemInfo.MultiTileArchInfo.IsValid = true; in setUpImpl()
26 DeviceFixture::SetUpImpl(&hardwareInfo); in setUpImpl()
93 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWCMDTEST_F()
95 …e_ptr<MockDevice> device(MockDevice::createWithNewExecutionEnvironment<MockDevice>(&hardwareInfo)); in HWCMDTEST_F()
108 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWCMDTEST_F()
110 …e_ptr<MockDevice> device(MockDevice::createWithNewExecutionEnvironment<MockDevice>(&hardwareInfo)); in HWCMDTEST_F()
131 …e_ptr<MockDevice> device(MockDevice::createWithNewExecutionEnvironment<MockDevice>(&hardwareInfo)); in HWCMDTEST_F()
144 …e_ptr<MockDevice> device(MockDevice::createWithNewExecutionEnvironment<MockDevice>(&hardwareInfo)); in HWCMDTEST_F()
H A Dcommand_stream_receiver_simulated_tests.cpp33 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWTEST_F()
52 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWTEST_F()
68 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWTEST_F()
87 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWTEST_F()
106 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWTEST_F()
130 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWTEST_F()
154 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWTEST_F()
179 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWTEST_F()
201 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in HWTEST_F()
229 hardwareInfo.featureTable.flags.ftrLocalMemory = false; in HWTEST_F()
[all …]
/dports/security/cryptlib/cryptlib-3.4.3/device/
H A Dhardware.c257 hardwareInfo->iCryptKeyset = CRYPT_ERROR; in shutdownFunction()
276 hardwareInfo->iCryptKeyset = CRYPT_ERROR; in initFunction()
280 hardwareInfo->labelLen = 29; in initFunction()
281 deviceInfo->label = hardwareInfo->label; in initFunction()
282 deviceInfo->labelLen = hardwareInfo->labelLen; in initFunction()
298 hardwareInfo->iCryptKeyset = iCryptKeyset; in initFunction()
317 UNUSED_ARG( hardwareInfo ); in controlFunction()
397 hardwareInfo->iCryptKeyset = iCryptKeyset; in controlFunction()
819 UNUSED_ARG( hardwareInfo ); in getNextItemFunction()
858 HARDWARE_INFO *hardwareInfo; in setPersonalityMapping() local
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/source/os_interface/
H A Ddevice_factory.cpp40 …auto hardwareInfo = executionEnvironment.rootDeviceEnvironments[rootDeviceIndex]->getMutableHardwa… in prepareDeviceEnvironmentsForProductFamilyOverride() local
41 *hardwareInfo = *hwInfoConst; in prepareDeviceEnvironmentsForProductFamilyOverride()
48 setHwInfoValuesFromConfig(hwInfoConfig, *hardwareInfo); in prepareDeviceEnvironmentsForProductFamilyOverride()
50 hardwareInfoSetup[hwInfoConst->platform.eProductFamily](hardwareInfo, true, hwInfoConfig); in prepareDeviceEnvironmentsForProductFamilyOverride()
52 HwInfoConfig *hwConfig = HwInfoConfig::get(hardwareInfo->platform.eProductFamily); in prepareDeviceEnvironmentsForProductFamilyOverride()
53 hwConfig->configureHardwareCustom(hardwareInfo, nullptr); in prepareDeviceEnvironmentsForProductFamilyOverride()
56hardwareInfo->capabilityTable.gpuAddressSpace = maxNBitValue(static_cast<uint64_t>(DebugManager.fl… in prepareDeviceEnvironmentsForProductFamilyOverride()
60hardwareInfo->platform.usRevId = static_cast<unsigned short>(DebugManager.flags.OverrideRevision.g… in prepareDeviceEnvironmentsForProductFamilyOverride()
64hardwareInfo->platform.usDeviceID = static_cast<unsigned short>(std::stoi(DebugManager.flags.Force… in prepareDeviceEnvironmentsForProductFamilyOverride()
72 auto &hwHelper = HwHelper::get(hardwareInfo->platform.eRenderCoreFamily); in prepareDeviceEnvironmentsForProductFamilyOverride()
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/gen12lp/
H A Dhw_helper_tests_gen12lp.inl44 auto stepping = hardwareInfo.platform.usRevId;
54 hardwareInfo.featureTable.flags.ftrCCSNode = false;
57 helper.adjustDefaultEngineType(&hardwareInfo);
185 auto &waTable = hardwareInfo.workaroundTable;
360 HardwareInfo hardwareInfo = *defaultHwInfo; local
367 hardwareInfo.platform.usRevId = stepping;
381 HardwareInfo hardwareInfo = *defaultHwInfo; local
388 hardwareInfo.platform.usRevId = stepping;
420 hardwareInfo.featureTable.flags.ftrLocalMemory = true;
423 EXPECT_TRUE(helper.isLocalMemoryEnabled(hardwareInfo));
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Filtering/FFT/src/
H A DitkFFTWGlobalConfiguration.cxx208 itksys::SystemInformation hardwareInfo; in GenerateWisdomFilename() local
209 hardwareInfo.RunCPUCheck(); in GenerateWisdomFilename()
210 hardwareInfo.RunOSCheck(); in GenerateWisdomFilename()
211 hardwareInfo.RunMemoryCheck(); in GenerateWisdomFilename()
216 OSD << hardwareInfo.GetOSName() << "_"; in GenerateWisdomFilename()
237 … OSD << hardwareInfo.GetNumberOfLogicalCPU() <<"x"<< hardwareInfo.GetNumberOfPhysicalCPU() << "_"; in GenerateWisdomFilename()
245 OSD << hardwareInfo.GetVendorID() << "_"; in GenerateWisdomFilename()
249 OSD << hardwareInfo.GetTypeID() << "_"; in GenerateWisdomFilename()
253 OSD << hardwareInfo.GetFamilyID() << "_"; in GenerateWisdomFilename()
257 OSD << hardwareInfo.GetModelID() << "_"; in GenerateWisdomFilename()
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/xe_hpg_core/
H A Dhw_helper_tests_xe_hpg_core.cpp180 HardwareInfo hardwareInfo = *defaultHwInfo; in XE_HPG_CORETEST_F() local
182 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in XE_HPG_CORETEST_F()
188 MemorySynchronizationCommands<FamilyType>::addPipeControlWA(cmdStream, 0x1000, hardwareInfo); in XE_HPG_CORETEST_F()
196 HardwareInfo hardwareInfo = *defaultHwInfo; in XE_HPG_CORETEST_F() local
198 hardwareInfo.featureTable.flags.ftrLocalMemory = false; in XE_HPG_CORETEST_F()
204 MemorySynchronizationCommands<FamilyType>::addPipeControlWA(cmdStream, 0x1000, hardwareInfo); in XE_HPG_CORETEST_F()
209 const auto &hwHelper = HwHelper::get(hardwareInfo.platform.eRenderCoreFamily); in XE_HPG_CORETEST_F()
225 HardwareInfo hardwareInfo = *defaultHwInfo; in XE_HPG_CORETEST_F() local
226 hardwareInfo.featureTable.flags.ftrLocalMemory = false; in XE_HPG_CORETEST_F()
263 HardwareInfo hardwareInfo = *defaultHwInfo; in XE_HPG_CORETEST_F() local
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/xe_hpc_core/
H A Dhw_helper_tests_xe_hpc_core.cpp158 hardwareInfo.platform.usDeviceID = FamilyType::pvcXlDeviceId; in XE_HPC_CORETEST_F()
162 hardwareInfo.platform.usDeviceID = FamilyType::pvcXtDeviceIds[i]; in XE_HPC_CORETEST_F()
163 …uint32_t numThreadsPerEU = hardwareInfo.gtSystemInfo.ThreadCount / hardwareInfo.gtSystemInfo.EUCou… in XE_HPC_CORETEST_F()
181 hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(stepping, hardwareInfo); in XE_HPC_CORETEST_F()
634 auto hardwareInfo = *defaultHwInfo; in XE_HPC_CORETEST_F() local
645 auto hardwareInfo = *defaultHwInfo; in XE_HPC_CORETEST_F() local
668 auto hardwareInfo = *defaultHwInfo; in XE_HPC_CORETEST_F() local
669 hardwareInfo.featureTable.flags.ftrLocalMemory = true; in XE_HPC_CORETEST_F()
674 hardwareInfo.platform.usRevId = testInput.revisionId; in XE_HPC_CORETEST_F()
767 auto &hwConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); in XE_HPC_CORETEST_F()
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/test/common/gen12lp/rkl/
H A Dtest_hw_info_config_rkl.cpp65 const HardwareInfo &hardwareInfo = RKL::hwInfo; in RKLTEST_F() local
66 EXPECT_TRUE(hardwareInfo.capabilityTable.ftrSvm); in RKLTEST_F()
70 const HardwareInfo &hardwareInfo = RKL::hwInfo; in RKLTEST_F() local
71 EXPECT_TRUE(hardwareInfo.capabilityTable.ftrSupportsInteger64BitAtomics); in RKLTEST_F()
75 const HardwareInfo &hardwareInfo = RKL::hwInfo; in RKLTEST_F() local
76 EXPECT_TRUE(hardwareInfo.capabilityTable.levelZeroSupported); in RKLTEST_F()

12345