File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ class backend_type(Enum):
76
76
77
77
# create a SYCL device with OpenCL backend using filter selector
78
78
d = dpctl.SyclDevice("opencl")
79
- print( d.backend)
79
+ d.backend
80
80
# Possible output: <backend_type.opencl: 5>
81
81
"""
82
82
@@ -101,7 +101,7 @@ class event_status_type(Enum):
101
101
102
102
import dpctl
103
103
ev = dpctl.SyclEvent()
104
- print( ev.execution_status )
104
+ ev.execution_status
105
105
# Possible output: <event_status_type.complete: 4>
106
106
"""
107
107
@@ -125,7 +125,7 @@ class global_mem_cache_type(Enum):
125
125
126
126
import dpctl
127
127
dev = dpctl.SyclDevice()
128
- print( dev.global_mem_cache_type)
128
+ dev.global_mem_cache_type
129
129
# Possible output: <global_mem_cache_type.read_write: 4>
130
130
"""
131
131
You can’t perform that action at this time.
0 commit comments