source: sasview/src/sas/qtgui/Perspectives/Fitting/GPUOptions.py @ 53c771e

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change on this file since 53c771e was f629e62f, checked in by krzywon, 7 years ago

Expand horizontal window size with size of input text.

  • Property mode set to 100644
File size: 7.7 KB
RevLine 
[06ce180]1# global
[a6cd8d1]2import os
3import sys
4import sasmodels
[ced1bff]5import json
6import platform
[06ce180]7
[9863343]8import sas.qtgui.Utilities.GuiUtils as GuiUtils
[83710be]9from PyQt4 import QtGui, QtCore, QtWebKit
[06ce180]10from sas.qtgui.Perspectives.Fitting.UI.GPUOptionsUI import Ui_GPUOptions
[ced1bff]11from sas.qtgui.Perspectives.Fitting.UI.GPUTestResultsUI import Ui_GPUTestResults
[06ce180]12
[14fa542]13try:
14    _fromUtf8 = QtCore.QString.fromUtf8
15except AttributeError:
16    def _fromUtf8(s):
17        return s
[06ce180]18
[14fa542]19try:
20    _encoding = QtGui.QApplication.UnicodeUTF8
21    def _translate(context, text, disambig):
22        return QtGui.QApplication.translate(context, text, disambig, _encoding)
23except AttributeError:
24    def _translate(context, text, disambig):
25        return QtGui.QApplication.translate(context, text, disambig)
[06ce180]26
27
28class GPUOptions(QtGui.QDialog, Ui_GPUOptions):
29    """
[37be27f]30    OpenCL Dialog to select the desired OpenCL driver
[06ce180]31    """
32
[a6cd8d1]33    clicked = False
34    sas_open_cl = None
35
[06ce180]36    def __init__(self, parent=None):
37        super(GPUOptions, self).__init__(parent)
[a6cd8d1]38        self.parent = parent
[06ce180]39        self.setupUi(self)
[a6cd8d1]40        self.addOpenCLOptions()
[9863343]41        self.setFixedSize(self.size())
[a6cd8d1]42        self.createLinks()
[06ce180]43
[a6cd8d1]44    def addOpenCLOptions(self):
45        """
46        Populate the window with a list of OpenCL options
47        """
[14fa542]48        # Get list of openCL options and add to GUI
[a6cd8d1]49        cl_tuple = _get_clinfo()
50        self.sas_open_cl = os.environ.get("SAS_OPENCL", "")
[14fa542]51        for title, descr in cl_tuple:
[c31d41e7]52            # Create an item for each openCL option
53            check_box = QtGui.QCheckBox()
[37be27f]54            check_box.setObjectName(_fromUtf8(descr))
55            check_box.setText(_translate("GPUOptions", descr, None))
[c31d41e7]56            self.optionsLayout.addWidget(check_box)
[37be27f]57            if (descr == self.sas_open_cl) or (
58                            title == "None" and not self.clicked):
59                check_box.click()
[a6cd8d1]60                self.clicked = True
[f629e62f]61        self.openCLCheckBoxGroup.setMinimumWidth(
62            self.optionsLayout.sizeHint().width())
63        self.setMinimumWidth(self.verticalLayout.sizeHint().width())
[37be27f]64
[a6cd8d1]65    def createLinks(self):
66        """
[37be27f]67        Link user interactions to function calls
[a6cd8d1]68        """
[9863343]69        self.testButton.clicked.connect(self.testButtonClicked)
70        self.helpButton.clicked.connect(self.helpButtonClicked)
[1df1025]71        for item in self.openCLCheckBoxGroup.findChildren(QtGui.QCheckBox):
[9863343]72            item.clicked.connect(self.checked)
[a6cd8d1]73
74    def checked(self):
75        """
[37be27f]76        Only allow a single check box to be selected. Uncheck others.
[a6cd8d1]77        """
[1df1025]78        checked = None
79        for box in self.openCLCheckBoxGroup.findChildren(QtGui.QCheckBox):
80            if box.isChecked() and (str(box.text()) == self.sas_open_cl or (
[37be27f]81                    str(box.text()) == "No OpenCL" and self.sas_open_cl == "")):
[a6cd8d1]82                box.setChecked(False)
[37be27f]83            elif box.isChecked():
[1df1025]84                checked = box
85        if hasattr(checked, "text"):
86            self.sas_open_cl = str(checked.text())
[a6cd8d1]87        else:
88            self.sas_open_cl = None
89
[0bb1397]90    def set_sas_open_cl(self):
[ced1bff]91        """
[37be27f]92        Set SAS_OPENCL value when tests run or OK button clicked
[a6cd8d1]93        """
[ced1bff]94        no_opencl_msg = False
95        if self.sas_open_cl:
96            os.environ["SAS_OPENCL"] = self.sas_open_cl
97            if self.sas_open_cl.lower() == "none":
98                no_opencl_msg = True
99        else:
100            if "SAS_OPENCL" in os.environ:
101                del os.environ["SAS_OPENCL"]
102        # Sasmodels kernelcl doesn't exist when initiated with None
103        if 'sasmodels.kernelcl' in sys.modules:
104            sasmodels.kernelcl.ENV = None
105        reload(sasmodels.core)
106        return no_opencl_msg
107
108    def testButtonClicked(self):
[a6cd8d1]109        """
[ced1bff]110        Run sasmodels check from here and report results from
111        """
112
[0bb1397]113        no_opencl_msg = self.set_sas_open_cl()
[ced1bff]114
115        # Only import when tests are run
116        from sasmodels.model_test import model_tests
117
118        try:
119            from sasmodels.kernelcl import environment
120            env = environment()
121            clinfo = [(ctx.devices[0].platform.vendor,
122                       ctx.devices[0].platform.version,
123                       ctx.devices[0].vendor,
124                       ctx.devices[0].name,
125                       ctx.devices[0].version)
126                      for ctx in env.context]
127        except ImportError:
128            clinfo = None
129
130        failures = []
131        tests_completed = 0
132        for test in model_tests():
133            try:
134                test()
135            except Exception:
136                failures.append(test.description)
137
138            tests_completed += 1
139
140        info = {
141            'version': sasmodels.__version__,
142            'platform': platform.uname(),
143            'opencl': clinfo,
144            'failing tests': failures,
145        }
146
147        msg = str(tests_completed) + ' tests completed.\n'
148        if len(failures) > 0:
149            msg += str(len(failures)) + ' tests failed.\n'
150            msg += 'Failing tests: '
151            msg += json.dumps(info['failing tests'])
152            msg += "\n"
153        else:
154            msg += "All tests passed!\n"
155
156        msg += "\nPlatform Details:\n\n"
157        msg += "Sasmodels version: "
158        msg += info['version'] + "\n"
159        msg += "\nPlatform used: "
160        msg += json.dumps(info['platform']) + "\n"
161        if no_opencl_msg:
162            msg += "\nOpenCL driver: None"
163        else:
164            msg += "\nOpenCL driver: "
165            msg += json.dumps(info['opencl']) + "\n"
[9863343]166        GPUTestResults(self, msg)
[a6cd8d1]167
168    def helpButtonClicked(self):
169        """
170        Open the help menu when the help button is clicked
171        """
[9863343]172        help_location = GuiUtils.HELP_DIRECTORY_LOCATION
173        help_location += "/user/sasgui/perspectives/fitting/gpu_setup.html"
174        help_location += "#device-selection"
[83710be]175        self.helpView = QtWebKit.QWebView()
176        self.helpView.load(QtCore.QUrl(help_location))
177        self.helpView.show()
[a6cd8d1]178
179    def reject(self):
180        """
181        Close the window without modifying SAS_OPENCL
182        """
[c82fd8f]183        self.closeEvent(None)
184        self.parent.gpu_options_widget.open()
[a6cd8d1]185
186    def accept(self):
187        """
188        Close the window after modifying the SAS_OPENCL value
189        """
[0bb1397]190        self.set_sas_open_cl()
191        self.closeEvent(None)
[a6cd8d1]192
193    def closeEvent(self, event):
194        """
195        Overwrite QDialog close method to allow for custom widget close
196        """
[c82fd8f]197        self.close()
[0bb1397]198        self.parent.gpu_options_widget = GPUOptions(self.parent)
[a6cd8d1]199
200
[ced1bff]201class GPUTestResults(QtGui.QDialog, Ui_GPUTestResults):
202    """
203    OpenCL Dialog to modify the OpenCL options
204    """
[9863343]205    def __init__(self, parent, msg):
[ced1bff]206        super(GPUTestResults, self).__init__(parent)
207        self.setupUi(self)
208        self.resultsText.setText(_translate("GPUTestResults", msg, None))
[9863343]209        self.setFixedSize(self.size())
[ced1bff]210        self.open()
211
212
[a6cd8d1]213def _get_clinfo():
214    """
[37be27f]215    Read in information about available OpenCL infrastructure
[a6cd8d1]216    """
217    clinfo = []
[9863343]218    cl_platforms = []
[a6cd8d1]219    try:
220        import pyopencl as cl
[9863343]221        cl_platforms = cl.get_platforms()
[a6cd8d1]222    except ImportError:
223        print("pyopencl import failed. Using only CPU computations")
224
225    p_index = 0
[9863343]226    for cl_platform in cl_platforms:
[a6cd8d1]227        d_index = 0
[9863343]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:
[a6cd8d1]231                combined_index = ":".join([str(p_index), str(d_index)])
[9863343]232            elif len(cl_platforms) > 1:
[a6cd8d1]233                combined_index = str(p_index)
234            else:
235                combined_index = str(d_index)
[9863343]236            clinfo.append((combined_index, ":".join([cl_platform.name,
237                                                     cl_platform.name])))
[a6cd8d1]238            d_index += 1
239        p_index += 1
240
241    clinfo.append(("None", "No OpenCL"))
242    return clinfo
Note: See TracBrowser for help on using the repository browser.