Changeset 2dcd6e7 in sasmodels
- Timestamp:
- Aug 7, 2018 9:17:25 AM (6 years ago)
- Branches:
- master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- e9b17b18
- Parents:
- 1711569
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/core.py
r4341dd4 r2dcd6e7 233 233 if not callable(model_info.Iq): 234 234 source = generate.make_source(model_info)['dll'] 235 old_path = kerneldll. DLL_PATH235 old_path = kerneldll.SAS_DLL_PATH 236 236 try: 237 kerneldll. DLL_PATH = path237 kerneldll.SAS_DLL_PATH = path 238 238 dll = kerneldll.make_dll(source, model_info, dtype=numpy_dtype) 239 239 finally: 240 kerneldll. DLL_PATH = old_path240 kerneldll.SAS_DLL_PATH = old_path 241 241 compiled_dlls.append(dll) 242 242 return compiled_dlls
Note: See TracChangeset
for help on using the changeset viewer.