Changeset 676351f in sasmodels for sasmodels/kernelcl.py


Ignore:
Timestamp:
Feb 19, 2015 9:42:18 AM (9 years ago)
Author:
ajj
Branches:
master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
3a45c2c, 636adb6
Parents:
da32ec3 (diff), c749266 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of https://github.com/SasView/sasmodels

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/kernelcl.py

    rda32ec3 r676351f  
    3333    warnings.warn(str(exc)) 
    3434    raise RuntimeError("OpenCL not available") 
     35 
     36try: 
     37    context = cl.create_some_context(interactive=False) 
     38    del context 
     39except cl.RuntimeError, exc: 
     40    warnings.warn(str(exc)) 
     41    raise RuntimeError("OpenCl not available") 
    3542 
    3643from pyopencl import mem_flags as mf 
Note: See TracChangeset for help on using the changeset viewer.