Changes in / [b343226:c64a68e] in sasmodels
- Location:
- sasmodels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/kerneldll.py
rbf94e6e r33969b6 123 123 # add openmp support if not running on a mac 124 124 if sys.platform != "darwin": 125 CC.append("-fopenmp") 125 # OpenMP seems to be broken on gcc 5.4.0 (ubuntu 16.04.9) 126 # Shut it off for all unix until we can investigate. 127 #CC.append("-fopenmp") 128 pass 126 129 def compile_command(source, output): 127 130 """unix compiler command""" -
sasmodels/sasview_model.py
r7c3fb15 rd533590 686 686 self._intermediate_results = getattr(calculator, 'results', None) 687 687 calculator.release() 688 self._model.release()688 #self._model.release() 689 689 return result 690 690
Note: See TracChangeset
for help on using the changeset viewer.