Changeset 2c801fe in sasmodels
- Timestamp:
- Mar 26, 2015 2:44:54 PM (10 years ago)
- 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:
- e7724f5
- Parents:
- 9e430d0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/kerneldll.py
raa4946b r2c801fe 17 17 from . import generate 18 18 from .kernelpy import PyInput, PyModel 19 from .exception import annotate_exception 19 20 20 21 # Compiler platform details … … 145 146 146 147 #print "dll",self.dllpath 147 self.dll = ct.CDLL(self.dllpath) 148 try: 149 self.dll = ct.CDLL(self.dllpath) 150 except Exception, exc: 151 annotate_exception("while loading "+self.dllpath) 152 raise 148 153 149 154 fp = c_float if self.dtype == generate.F32 else c_double
Note: See TracChangeset
for help on using the changeset viewer.