##// 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
Brian Granger
Continuing work on ipcontroller.
r2288 c = get_config()
Brian Granger
Minor revisions to ipengine_config.py
r2300 c.MPI.use = ''
Brian Granger
Continuing work on ipcontroller.
r2288
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
"""
Brian Granger
The ipengine script has been refactored to use the new config system....
r2299 c.Global.log_to_file = False
Brian Granger
Minor revisions to ipengine_config.py
r2300
c.Global.exec_lines = ['import numpy']
Brian Granger
The ipengine script has been refactored to use the new config system....
r2299 c.Global.log_dir_name = 'log'
Brian Granger
Minor revisions to ipengine_config.py
r2300
Brian Granger
The ipengine script has been refactored to use the new config system....
r2299 c.Global.security_dir_name = 'security'
Brian Granger
Minor revisions to ipengine_config.py
r2300
c.Global.log_level = 10
Brian Granger
The ipengine script has been refactored to use the new config system....
r2299 c.Global.shell_class = 'IPython.kernel.core.interpreter.Interpreter'
Brian Granger
Minor revisions to ipengine_config.py
r2300 c.Global.furl_file_name = 'ipcontroller-engine.furl'
c.Global.furl_file = ''