We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f02981b commit d412c72Copy full SHA for d412c72
test/legacy_test/op_test.py
@@ -2909,13 +2909,13 @@ def _get_places(self):
2909
return [place]
2910
else:
2911
return []
2912
- elif is_custom_device():
2913
- dev_type = paddle.device.get_all_custom_device_type()[0]
2914
- place = core.CustomPlace(dev_type, 0)
2915
- if core.is_float16_supported(place):
2916
- return [place]
2917
- else:
2918
- return []
+ # elif is_custom_device():
+ # dev_type = paddle.device.get_all_custom_device_type()[0]
+ # place = core.CustomPlace(dev_type, 0)
+ # if core.is_float16_supported(place):
+ # return [place]
+ # else:
+ # return []
2919
2920
2921
places = []
0 commit comments