Beispiel #1
0
 def test_device_value_error1():
     device_error = 'gpu1'
     props = get_device_properties(device_error)
Beispiel #2
0
 def test_device_value_error2():
     device_error = float(device_count())
     props = get_device_properties(device_error)
Beispiel #3
0
 def test_device_indexError_error():
     device_error = device_count() + 1
     props = get_device_properties(device_error)
Beispiel #4
0
 def test_get_device_properties_CUDAPlace(self):
     if core.is_compiled_with_cuda():
         device = core.CUDAPlace(0)
         props = get_device_properties(device)
         self.assertIsNotNone(props)
Beispiel #5
0
 def test_get_device_properties_int(self):
     if core.is_compiled_with_cuda():
         gpu_num = device_count()
         for i in range(gpu_num):
             props = get_device_properties(i)
             self.assertIsNotNone(props)
Beispiel #6
0
 def test_get_device_properties_str(self):
     if core.is_compiled_with_cuda():
         props = get_device_properties('gpu:0')
         self.assertIsNotNone(props)
Beispiel #7
0
 def test_get_device_properties_default(self):
     if core.is_compiled_with_cuda():
         props = get_device_properties()
         self.assertIsNotNone(props)