Skip to content

Commit

Permalink
REL: fix atlas detection for SSE2/SSE3 wininst.
Browse files Browse the repository at this point in the history
(cherry picked from commit b5244522ddec4b20dcc764f1fb3624961a388a82)
  • Loading branch information
cournape committed Dec 1, 2009
1 parent 4ed44df commit 2294355
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pavement.py
Expand Up @@ -109,8 +109,8 @@
"2.6": ["/Library/Frameworks/Python.framework/Versions/2.6/bin/python"]
}

SSE3_CFG = {'BLAS': r'C:\local\lib\yop\sse3', 'LAPACK': r'C:\local\lib\yop\sse3'}
SSE2_CFG = {'BLAS': r'C:\local\lib\yop\sse2', 'LAPACK': r'C:\local\lib\yop\sse2'}
SSE3_CFG = {'ATLAS': r'C:\local\lib\yop\sse3'}
SSE2_CFG = {'ATLAS': r'C:\local\lib\yop\sse2'}
NOSSE_CFG = {'BLAS': r'C:\local\lib\yop\nosse', 'LAPACK': r'C:\local\lib\yop\nosse'}

SITECFG = {"sse2" : SSE2_CFG, "sse3" : SSE3_CFG, "nosse" : NOSSE_CFG}
Expand Down

0 comments on commit 2294355

Please sign in to comment.