Changeset d6e2f8d in sasmodels
- Timestamp:
- Aug 26, 2016 8:36:18 AM (8 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- f49675c
- Parents:
- 8407d8c (diff), 1392831 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- sasmodels
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/sasview_model.py
r300a2f7 r3bcb88c 454 454 """ 455 455 # TODO: fix test so that parameter order doesn't matter 456 ret = ['%s.%s' % (p.name, ext) 457 for p in self._model_info.parameters.user_parameters() 458 for ext in ('npts', 'nsigmas', 'width') 459 if p.polydisperse] 456 ret = ['%s.%s' % (p_name, ext) 457 for p_name in self.dispersion.keys() 458 for ext in ('npts', 'nsigmas', 'width')] 460 459 #print(ret) 461 460 return ret -
sasmodels/compare.py
rb32dafd r8407d8c 563 563 elif dtype.endswith('!'): 564 564 return eval_ctypes(model_info, data, dtype=dtype[:-1], cutoff=cutoff) 565 elif not model_info.opencl: 566 return eval_ctypes(model_info, data, dtype=dtype, cutoff=cutoff) 565 567 else: 566 568 return eval_opencl(model_info, data, dtype=dtype, cutoff=cutoff) -
sasmodels/core.py
r725ee36 r8407d8c 46 46 # build_model 47 47 48 KINDS = ("all", "py", "c", "double", "single", " 1d", "2d",48 KINDS = ("all", "py", "c", "double", "single", "opencl", "1d", "2d", 49 49 "nonmagnetic", "magnetic") 50 50 def list_models(kind=None): … … 60 60 * single: models which support single precision 61 61 * double: models which require double precision 62 * opencl: controls if OpenCL is supperessed 62 63 * 1d: models which are 1D only, or 2D using abs(q) 63 64 * 2d: models which can be 2D … … 85 86 return True 86 87 elif kind == "single" and info.single: 88 return True 89 elif kind == "opencl" and info.opencl: 87 90 return True 88 91 elif kind == "2d" and any(p.type == 'orientation' for p in pars): … … 215 218 """ 216 219 # Assign default platform, overriding ocl with dll if OpenCL is unavailable 217 if platform is None: 220 # If opencl=False OpenCL is switched off 221 if platform is None or model_info.opencl: 218 222 platform = "ocl" 219 if platform == "ocl" and not HAVE_OPENCL :223 if platform == "ocl" and not HAVE_OPENCL or not model_info.opencl: 220 224 platform = "dll" 221 225 -
sasmodels/modelinfo.py
r40a87fa r8407d8c 731 731 info.category = getattr(kernel_module, 'category', None) 732 732 info.single = getattr(kernel_module, 'single', True) 733 info.opencl = getattr(kernel_module, 'opencl', True) 733 734 info.structure_factor = getattr(kernel_module, 'structure_factor', False) 734 735 info.profile_axes = getattr(kernel_module, 'profile_axes', ['x', 'y'])
Note: See TracChangeset
for help on using the changeset viewer.