File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ static const bool UseCopyEngineForD2DCopy = [] {
60
60
return (CopyEngineForD2DCopy && (std::stoi (CopyEngineForD2DCopy) != 0 ));
61
61
}();
62
62
63
- // This is an experiemental option that allows the use of copy engine, if
63
+ // This is an experimental option that allows the use of copy engine, if
64
64
// available in the device, in Level Zero plugin for copy operations submitted
65
65
// to an in-order queue. The default is 1.
66
66
static const bool UseCopyEngineForInOrderQueue = [] {
@@ -70,12 +70,6 @@ static const bool UseCopyEngineForInOrderQueue = [] {
70
70
(std::stoi (CopyEngineForInOrderQueue) != 0 ));
71
71
}();
72
72
73
- static const bool CopyEngineRequested = [] {
74
- const char *CopyEngine = std::getenv (" SYCL_PI_LEVEL_ZERO_USE_COPY_ENGINE" );
75
- bool UseCopyEngine = (!CopyEngine || (std::stoi (CopyEngine) != 0 ));
76
- return UseCopyEngine;
77
- }();
78
-
79
73
// This class encapsulates actions taken along with a call to Level Zero API.
80
74
class ZeCall {
81
75
private:
You can’t perform that action at this time.
0 commit comments