17 lines
271 B
Python
17 lines
271 B
Python
class SyclContext:
|
|
def __init__(self, info):
|
|
pass
|
|
|
|
@property
|
|
def device_count(self):
|
|
return 6
|
|
|
|
|
|
class SyclDevice:
|
|
def __init__(self, info):
|
|
pass
|
|
|
|
@property
|
|
def name(self):
|
|
return "Intel(R) Data Center GPU Max 1550"
|