Changes in / [71f8bdb:e6378f9] in sasmodels
- Files:
-
- 1 added
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/ref/index.rst
r0c1e5a9 r1875f4e 9 9 intro.rst 10 10 refs.rst 11 gpu_computations.rst11 compilation.rst 12 12 magnetism/magnetism.rst -
sasmodels/kerneldll.py
rb01a603 r3764ec1 241 241 if not os.path.exists(dll): 242 242 need_recompile = True 243 #elif getattr(sys, 'frozen', None) is not None:244 ## TODO: don't suppress time stamp245 ## Currently suppressing recompile when running in a frozen environment246 #need_recompile = False243 elif getattr(sys, 'frozen', None) is not None: 244 # TODO: don't suppress time stamp 245 # Currently suppressing recompile when running in a frozen environment 246 need_recompile = False 247 247 else: 248 248 dll_time = os.path.getmtime(dll) … … 259 259 # Note: if there is a syntax error then compile raises an error 260 260 # and the source file will not be deleted. 261 #os.unlink(filename)262 print("saving compiled file in %r"%filename)261 os.unlink(filename) 262 #print("saving compiled file in %r"%filename) 263 263 return dll 264 264 … … 301 301 def _load_dll(self): 302 302 # type: () -> None 303 print("dll", self.dllpath)303 #print("dll", self.dllpath) 304 304 try: 305 305 self._dll = ct.CDLL(self.dllpath)
Note: See TracChangeset
for help on using the changeset viewer.