Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Calling DOLFIN just-in-time (JIT) compiler, this may take some time.
- In instant.recompile: The module did not compile with command 'make VERBOSE=1', see '/home/doom/.instant/error/dolfin_compile_code_5c477b54fbffad56c7b98b0312cc85d0/compile.log'
- ---------------------------------------------------------------------------
- RuntimeError Traceback (most recent call last)
- /usr/lib/python2.7/dist-packages/IPython/utils/py3compat.pyc in execfile(fname, *where)
- 173 else:
- 174 filename = fname
- --> 175 __builtin__.execfile(filename, *where)
- /media/D/LINUX_INSTALL/FEniCS-Apps/cbcpdesys/cbc/cfd/ransmodels/demo/turbulent_channel.py in <module>()
- 22 from cbc.cfd.problems.channel import *
- 23 from cbc.cfd import icns # Navier-Stokes solvers
- ---> 24 from cbc.cfd import ransmodels # RANS models
- 25 from cbc.cfd.icns import solver_parameters # parameters for NS
- 26 from cbc.cfd.ransmodels import solver_parameters as rans_parameters # parameters for RANS model
- /media/D/LINUX_INSTALL/FEniCS-Apps/cbcpdesys/cbc/cfd/ransmodels/__init__.py in <module>()
- 4 from LowReynolds_Segregated import LowReynolds_Segregated
- 5 from LowReynolds_Coupled import LowReynolds_Coupled
- ----> 6 from StandardKE_Coupled import StandardKE_Coupled
- 7 from V2F_2Coupled import V2F_2Coupled
- 8 from V2F_FullyCoupled import V2F_FullyCoupled
- /media/D/LINUX_INSTALL/FEniCS-Apps/cbcpdesys/cbc/cfd/ransmodels/StandardKE_Coupled.py in <module>()
- 9 """
- 10 from StandardKE import *
- ---> 11 from cbc.cfd.tools.Wall import QWall
- 12
- 13 class StandardKE_Coupled(StandardKE):
- /media/D/LINUX_INSTALL/FEniCS-Apps/cbcpdesys/cbc/cfd/tools/Wall.py in <module>()
- 29 }
- 30 """
- ---> 31 compiled_module = compile_extension_module(code=code)
- 32
- 33 class Wallfunction:
- /usr/lib/python2.7/dist-packages/dolfin/compilemodules/jit.pyc in mpi_jit(*args, **kwargs)
- 60 # Just call JIT compiler when running in serial
- 61 if MPI.size(mpi_comm) == 1:
- ---> 62 return local_jit(*args, **kwargs)
- 63
- 64 # Compile first on process 0
- /usr/lib/python2.7/dist-packages/dolfin/compilemodules/compilemodule.pyc in compile_extension_module(code, module_name, additional_declarations, additional_system_headers, **instant_kwargs)
- 441 code = code,
- 442 additional_declarations = _additional_declarations % declaration_strs,
- --> 443 **instant_kwargs)
- 444
- 445 sys.stdout.flush()
- /usr/lib/python2.7/dist-packages/instant/build.pyc in build_module(modulename, source_directory, code, init_code, additional_definitions, additional_declarations, sources, wrap_headers, local_headers, system_headers, include_dirs, library_dirs, libraries, swigargs, swig_include_dirs, cppargs, lddargs, object_files, arrays, generate_interface, generate_setup, cmake_packages, signature, cache_dir)
- 557
- 558 # Recompile if necessary
- --> 559 recompile(modulename, module_path, new_compilation_checksum, build_system)
- 560
- 561 # --- Load, cache, and return module
- /usr/lib/python2.7/dist-packages/instant/build.pyc in recompile(modulename, module_path, new_compilation_checksum, build_system)
- 163 os.remove(compilation_checksum_filename)
- 164 msg = "In instant.recompile: The module did not compile with command '%s', see '%s'"
- --> 165 instant_error(msg % (cmd, compile_log_filename_dest))
- 166
- 167 finally:
- /usr/lib/python2.7/dist-packages/instant/output.pyc in instant_error(*message)
- 79 _log.error(*message)
- 80 text = message[0] % message[1:]
- ---> 81 raise RuntimeError(text)
- 82
- 83 def instant_assert(condition, *message):
- RuntimeError: In instant.recompile: The module did not compile with command 'make VERBOSE=1', see '/home/doom/.instant/error/dolfin_compile_code_5c477b54fbffad56c7b98b0312cc85d0/compile.log'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement