Home
last modified time | relevance | path

Searched refs:driverDiagnostics (Results 1 – 5 of 5) sorted by relevance

/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/source/context/
H A Dcontext.h137 DEBUG_BREAK_IF(driverDiagnostics == nullptr);
140 if (driverDiagnostics->validFlags(flags)) {
154 …PerformanceHints hint = driverDiagnostics->obtainHintForTransferOperation(commandType, transferReq…
160 return driverDiagnostics != nullptr;
226 DriverDiagnostics *driverDiagnostics = nullptr;
H A Dcontext.cpp61 if (driverDiagnostics) { in ~Context()
62 delete driverDiagnostics; in ~Context()
179 std::unique_ptr<DriverDiagnostics> driverDiagnostics; in createImpl() local
220driverDiagnostics.reset(new DriverDiagnostics((cl_diagnostics_verbose_level)driverDiagnosticsUsed)… in createImpl()
237 this->driverDiagnostics = driverDiagnostics.release(); in createImpl()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/context/
H A Ddriver_diagnostics_tests.cpp357 auto driverDiagnostics = context->driverDiagnostics; in TEST_F() local
358 ASSERT_NE(nullptr, driverDiagnostics); in TEST_F()
359 EXPECT_TRUE(driverDiagnostics->validFlags(hintLevel)); in TEST_F()
424 auto driverDiagnostics = context->driverDiagnostics; in TEST_F() local
425 ASSERT_NE(nullptr, driverDiagnostics); in TEST_F()
426 EXPECT_TRUE(driverDiagnostics->validFlags(hintLevel)); in TEST_F()
427 EXPECT_FALSE(driverDiagnostics->validFlags(2)); in TEST_F()
929 DriverDiagnostics driverDiagnostics(0); in TEST() local
944 …auto hintWithTransferRequired = driverDiagnostics.obtainHintForTransferOperation(std::get<0>(comma… in TEST()
945 …auto hintWithoutTransferRequired = driverDiagnostics.obtainHintForTransferOperation(std::get<0>(co… in TEST()
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/mocks/
H A Dmock_context.h28 using Context::driverDiagnostics;
H A Dmock_context.cpp47 driverDiagnostics = nullptr; in MockContext()