Changeset 8a518285 in sasview for src/sas/qtgui/Perspectives/Fitting/GPUOptions.py
- Timestamp:
- Aug 7, 2018 10:47:21 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- db05c44
- Parents:
- 25b3d53
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/GPUOptions.py
raed0532 r8a518285 226 226 for cl_platform in cl_platforms: 227 227 d_index = 0 228 cl_ platforms = cl_platform.get_devices()229 for cl_ platform in cl_platforms:230 if len(cl_platforms) > 1 and len(cl_ platforms) > 1:228 cl_devices = cl_platform.get_devices() 229 for cl_device in cl_devices: 230 if len(cl_platforms) > 1 and len(cl_devices) > 1: 231 231 combined_index = ":".join([str(p_index), str(d_index)]) 232 232 elif len(cl_platforms) > 1: … … 234 234 else: 235 235 combined_index = str(d_index) 236 clinfo.append((combined_index, ": ".join([cl_platform.name,237 cl_ platform.name])))236 clinfo.append((combined_index, ": ".join([cl_platform.name, 237 cl_device.name]))) 238 238 d_index += 1 239 239 p_index += 1
Note: See TracChangeset
for help on using the changeset viewer.