##// END OF EJS Templates
Minor revisions to ipengine_config.py
Minor revisions to ipengine_config.py

File last commit:

r2300:27359b4d
r2300:27359b4d
Show More
ipengine_config.py
32 lines | 605 B | text/x-python | PythonLexer
c = get_config()
c.MPI.use = ''
c.MPI.mpi4py = """from mpi4py import MPI as mpi
mpi.size = mpi.COMM_WORLD.Get_size()
mpi.rank = mpi.COMM_WORLD.Get_rank()
"""
c.MPI.pytrilinos = """from PyTrilinos import Epetra
class SimpleStruct:
pass
mpi = SimpleStruct()
mpi.rank = 0
mpi.size = 0
"""
c.Global.log_to_file = False
c.Global.exec_lines = ['import numpy']
c.Global.log_dir_name = 'log'
c.Global.security_dir_name = 'security'
c.Global.log_level = 10
c.Global.shell_class = 'IPython.kernel.core.interpreter.Interpreter'
c.Global.furl_file_name = 'ipcontroller-engine.furl'
c.Global.furl_file = ''