Changes in / [5fb0634:a6d3f46] in sasmodels
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r9248bf7 r67cc0ff 8 8 *.so 9 9 *.obj 10 *.o 10 11 /doc/_build/ 11 12 /doc/api/ … … 19 20 /.pydevproject 20 21 /.idea 22 .vscode 21 23 /sasmodels.egg-info/ 22 24 /example/Fit_*/ -
sasmodels/kerneldll.py
r2d81cfe r1ddb794 185 185 subprocess.check_output(command, shell=shell, stderr=subprocess.STDOUT) 186 186 except subprocess.CalledProcessError as exc: 187 raise RuntimeError("compile failed.\n%s\n%s"%(command_str, exc.output)) 187 raise RuntimeError("compile failed.\n%s\n%s" 188 % (command_str, exc.output.decode())) 188 189 if not os.path.exists(output): 189 190 raise RuntimeError("compile failed. File is in %r"%source) -
sasmodels/modelinfo.py
r108e70e rc01ed3e 12 12 from os.path import abspath, basename, splitext 13 13 import inspect 14 import logging 14 15 15 16 import numpy as np # type: ignore 17 18 from . import autoc 16 19 17 20 # Optional typing … … 32 35 TestCondition = Tuple[ParameterSetUser, TestInput, TestValue] 33 36 # pylint: enable=unused-import 37 38 logger = logging.getLogger(__name__) 34 39 35 40 # If MAX_PD changes, need to change the loop macros in kernel_iq.c … … 789 794 info.structure_factor = getattr(kernel_module, 'structure_factor', False) 790 795 info.profile_axes = getattr(kernel_module, 'profile_axes', ['x', 'y']) 796 info.c_code = getattr(kernel_module, 'c_code', None) 791 797 info.source = getattr(kernel_module, 'source', []) 792 798 info.c_code = getattr(kernel_module, 'c_code', None) … … 804 810 info.sesans = getattr(kernel_module, 'sesans', None) # type: ignore 805 811 # Default single and opencl to True for C models. Python models have callable Iq. 806 info.opencl = getattr(kernel_module, 'opencl', not callable(info.Iq))807 info.single = getattr(kernel_module, 'single', not callable(info.Iq))808 812 info.random = getattr(kernel_module, 'random', None) 809 813 … … 814 818 info.hidden = getattr(kernel_module, 'hidden', None) # type: ignore 815 819 820 info.lineno = {} 821 _find_source_lines(info, kernel_module) 822 if getattr(kernel_module, 'py2c', False): 823 try: 824 autoc.convert(info, kernel_module) 825 except Exception as exc: 826 logger.warn(str(exc) + " while converting %s from C to python"%name) 827 828 # Needs to come after autoc.convert since the Iq symbol may have been 829 # converted from python to C 830 info.opencl = getattr(kernel_module, 'opencl', not callable(info.Iq)) 831 info.single = getattr(kernel_module, 'single', not callable(info.Iq)) 832 816 833 if callable(info.Iq) and parameters.has_2d: 817 834 raise ValueError("oriented python models not supported") 818 819 info.lineno = {}820 _find_source_lines(info, kernel_module)821 835 822 836 return info
Note: See TracChangeset
for help on using the changeset viewer.