Advertisement
Guest User

FENICS ERRORS

a guest
Jun 30th, 2014
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 4.05 KB | None | 0 0
  1. Calling DOLFIN just-in-time (JIT) compiler, this may take some time.
  2. In instant.recompile: The module did not compile with command 'make VERBOSE=1', see '/home/doom/.instant/error/dolfin_compile_code_5c477b54fbffad56c7b98b0312cc85d0/compile.log'
  3. ---------------------------------------------------------------------------
  4. RuntimeError                              Traceback (most recent call last)
  5. /usr/lib/python2.7/dist-packages/IPython/utils/py3compat.pyc in execfile(fname, *where)
  6.     173             else:
  7.     174                 filename = fname
  8. --> 175             __builtin__.execfile(filename, *where)
  9.  
  10. /media/D/LINUX_INSTALL/FEniCS-Apps/cbcpdesys/cbc/cfd/ransmodels/demo/turbulent_channel.py in <module>()
  11.      22 from cbc.cfd.problems.channel import *
  12.      23 from cbc.cfd import icns                    # Navier-Stokes solvers
  13. ---> 24 from cbc.cfd import ransmodels              # RANS models
  14.      25 from cbc.cfd.icns import solver_parameters  # parameters for NS
  15.      26 from cbc.cfd.ransmodels import solver_parameters as rans_parameters # parameters for RANS model
  16.  
  17. /media/D/LINUX_INSTALL/FEniCS-Apps/cbcpdesys/cbc/cfd/ransmodels/__init__.py in <module>()
  18.       4 from LowReynolds_Segregated import LowReynolds_Segregated
  19.       5 from LowReynolds_Coupled import LowReynolds_Coupled
  20. ----> 6 from StandardKE_Coupled import StandardKE_Coupled
  21.       7 from V2F_2Coupled import V2F_2Coupled
  22.       8 from V2F_FullyCoupled import V2F_FullyCoupled
  23.  
  24. /media/D/LINUX_INSTALL/FEniCS-Apps/cbcpdesys/cbc/cfd/ransmodels/StandardKE_Coupled.py in <module>()
  25.       9 """
  26.     10 from StandardKE import *
  27. ---> 11 from cbc.cfd.tools.Wall import QWall
  28.     12
  29.     13 class StandardKE_Coupled(StandardKE):
  30.  
  31. /media/D/LINUX_INSTALL/FEniCS-Apps/cbcpdesys/cbc/cfd/tools/Wall.py in <module>()
  32.     29 }
  33.     30 """
  34. ---> 31 compiled_module = compile_extension_module(code=code)
  35.      32
  36.      33 class Wallfunction:
  37.  
  38. /usr/lib/python2.7/dist-packages/dolfin/compilemodules/jit.pyc in mpi_jit(*args, **kwargs)
  39.      60         # Just call JIT compiler when running in serial
  40.  
  41.      61         if MPI.size(mpi_comm) == 1:
  42. ---> 62             return local_jit(*args, **kwargs)
  43.      63
  44.      64         # Compile first on process 0
  45.  
  46.  
  47. /usr/lib/python2.7/dist-packages/dolfin/compilemodules/compilemodule.pyc in compile_extension_module(code, module_name, additional_declarations, additional_system_headers, **instant_kwargs)
  48.     441         code              = code,
  49.     442         additional_declarations = _additional_declarations % declaration_strs,
  50. --> 443         **instant_kwargs)
  51.     444
  52.     445     sys.stdout.flush()
  53.  
  54. /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)
  55.     557
  56.     558         # Recompile if necessary
  57.  
  58. --> 559         recompile(modulename, module_path, new_compilation_checksum, build_system)
  59.     560
  60.     561         # --- Load, cache, and return module
  61.  
  62.  
  63. /usr/lib/python2.7/dist-packages/instant/build.pyc in recompile(modulename, module_path, new_compilation_checksum, build_system)
  64.     163                     os.remove(compilation_checksum_filename)
  65.     164                 msg = "In instant.recompile: The module did not compile with command '%s', see '%s'"
  66. --> 165                 instant_error(msg % (cmd, compile_log_filename_dest))
  67.     166
  68.     167     finally:
  69.  
  70. /usr/lib/python2.7/dist-packages/instant/output.pyc in instant_error(*message)
  71.      79     _log.error(*message)
  72.      80     text = message[0] % message[1:]
  73. ---> 81     raise RuntimeError(text)
  74.      82
  75.      83 def instant_assert(condition, *message):
  76.  
  77. 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