Skip to content
Snippets Groups Projects

Vectorisation bug

Merged Markus Holzer requested to merge holzer/pystencils:VectorisationBug into master
Viewing commit abdd8179
Show latest version
1 file
+ 1
1
Preferences
Compare changes
+ 1
1
@@ -508,7 +508,7 @@ def load_kernel_from_file(module_name, function_name, path):
import time
import warnings
warnings.warn("Could not load " + path + ", trying on more time...")
time.sleep(1)
time.sleep(5)
spec = spec_from_file_location(name=module_name, location=path)
mod = module_from_spec(spec)
spec.loader.exec_module(mod)