Changes in / [9f2cc5c:c749266] in sasmodels
- Location:
- sasmodels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/kernelcl.py
r87fce00 r7841376 33 33 warnings.warn(str(exc)) 34 34 raise RuntimeError("OpenCL not available") 35 36 try: 37 context = cl.create_some_context(interactive=False) 38 del context 39 except cl.RuntimeError, exc: 40 warnings.warn(str(exc)) 41 raise RuntimeError("OpenCl not available") 35 42 36 43 from pyopencl import mem_flags as mf -
sasmodels/kerneldll.py
r87fce00 rafb2c78 24 24 #COMPILE = "cl /nologo /Ox /MD /W3 /GS- /DNDEBUG /Tp%(source)s /link /DLL /INCREMENTAL:NO /MANIFEST /OUT:%(output)s" 25 25 #COMPILE = "cl /nologo /Ox /MD /W3 /GS- /DNDEBUG /Tp%(source)s /openmp /link /DLL /INCREMENTAL:NO /MANIFEST /OUT:%(output)s" 26 COMPILE = "gcc -shared -fPIC -std=c99 -fopenmp -O2 -Wall %(source)s -o %(output)s -lm" 26 #COMPILE = "gcc -shared -fPIC -std=c99 -fopenmp -O2 -Wall %(source)s -o %(output)s -lm" 27 COMPILE = "gcc -shared -fPIC -std=c99 -O2 -Wall %(source)s -o %(output)s -lm" 27 28 else: 28 29 COMPILE = "cc -shared -fPIC -std=c99 -fopenmp -O2 -Wall %(source)s -o %(output)s -lm"
Note: See TracChangeset
for help on using the changeset viewer.