Changeset 33969b6 in sasmodels for sasmodels/kerneldll.py


Ignore:
Timestamp:
Apr 27, 2018 4:06:15 PM (6 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
aa25fc7, 38935ec, 1662ebe, c11d09f, 1198f90, 84e89cd, 02490b3, ff18db1
Parents:
d533590
Message:

OpenMP seems to be broken with c99 on Ubuntu, so shut it off for all unix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/kerneldll.py

    rbf94e6e r33969b6  
    123123    # add openmp support if not running on a mac 
    124124    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 
    126129    def compile_command(source, output): 
    127130        """unix compiler command""" 
Note: See TracChangeset for help on using the changeset viewer.