Changes in / [6ceca44:1258e32] in sasmodels
- Files:
-
- 3 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
re9ed2de re9ed2de 8 8 *.so 9 9 *.obj 10 *.o11 10 /doc/_build/ 12 11 /doc/api/ … … 20 19 /.pydevproject 21 20 /.idea 22 .vscode23 21 /sasmodels.egg-info/ 24 22 /example/Fit_*/ -
sasmodels/kerneldll.py
r1ddb794 r2d81cfe 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" 188 % (command_str, exc.output.decode())) 187 raise RuntimeError("compile failed.\n%s\n%s"%(command_str, exc.output)) 189 188 if not os.path.exists(output): 190 189 raise RuntimeError("compile failed. File is in %r"%source) -
sasmodels/modelinfo.py
r5ab99b7 r108e70e 12 12 from os.path import abspath, basename, splitext 13 13 import inspect 14 import logging15 14 16 15 import numpy as np # type: ignore 17 18 from . import autoc19 16 20 17 # Optional typing … … 35 32 TestCondition = Tuple[ParameterSetUser, TestInput, TestValue] 36 33 # pylint: enable=unused-import 37 38 logger = logging.getLogger(__name__)39 34 40 35 # If MAX_PD changes, need to change the loop macros in kernel_iq.c … … 809 804 info.sesans = getattr(kernel_module, 'sesans', None) # type: ignore 810 805 # 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)) 811 808 info.random = getattr(kernel_module, 'random', None) 812 809 … … 817 814 info.hidden = getattr(kernel_module, 'hidden', None) # type: ignore 818 815 816 if callable(info.Iq) and parameters.has_2d: 817 raise ValueError("oriented python models not supported") 818 819 819 info.lineno = {} 820 820 _find_source_lines(info, kernel_module) 821 if getattr(kernel_module, 'py2c', False):822 try:823 autoc.convert(info, kernel_module)824 except Exception as exc:825 logger.warn(str(exc) + " while converting %s from C to python"%name)826 827 # Needs to come after autoc.convert since the Iq symbol may have been828 # converted from python to C829 info.opencl = getattr(kernel_module, 'opencl', not callable(info.Iq))830 info.single = getattr(kernel_module, 'single', not callable(info.Iq))831 832 if callable(info.Iq) and parameters.has_2d:833 raise ValueError("oriented python models not supported")834 821 835 822 return info
Note: See TracChangeset
for help on using the changeset viewer.