File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
libsyclinterface/helper/source Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -326,6 +326,8 @@ aspect DPCTL_DPCTLAspectTypeToSyclAspect(DPCTLSyclAspectType AspectTy)
326
326
return aspect::usm_atomic_shared_allocations;
327
327
case DPCTLSyclAspectType::host_debuggable:
328
328
return aspect::host_debuggable;
329
+ case DPCTLSyclAspectType::emulated:
330
+ return aspect::emulated;
329
331
default :
330
332
throw std::runtime_error (" Unsupported aspect type" );
331
333
}
@@ -370,6 +372,8 @@ DPCTLSyclAspectType DPCTL_SyclAspectToDPCTLAspectType(aspect Aspect)
370
372
return DPCTLSyclAspectType::usm_atomic_shared_allocations;
371
373
case aspect::host_debuggable:
372
374
return DPCTLSyclAspectType::host_debuggable;
375
+ case aspect::emulated:
376
+ return DPCTLSyclAspectType::emulated;
373
377
default :
374
378
throw std::runtime_error (" Unsupported aspect type" );
375
379
}
You can’t perform that action at this time.
0 commit comments