-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy path__console.py
94 lines (83 loc) · 2.82 KB
/
__console.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import code
# import ngfemcf
# import ngmpi
def mydir(x=None):
if x==None:
return []
else:
return [i for i in dir(x) if not '__' in i]
def execfile(fname):
exec(open(fname).read())
class InteractiveMPIConsole(code.InteractiveConsole):
# Function copied from /usr/lib/python3.4/code.py line 38
def runsource(self, source, filename="<input>", symbol="single"):
try:
compiled_code = self.compile(source, filename, symbol)
except (OverflowError, SyntaxError, ValueError):
# Case 1
self.showsyntaxerror(filename)
return False
if compiled_code is None:
# Case 2
return True
# Case 3 -- first send code to other mpi processes
ngmpi.SendCommand('ngs_py '+source)
# then run it on master
code.InteractiveConsole.runcode(self, compiled_code)
# Avoid the prompt to show up before other processes' output
self.Barrier()
return False
def interact(self):
import sys
self.write("MPI Shell\n")
self.write("================\n")
self.write("Use pprint(str) to print with MPI ranks\n\n")
self.runsource("from ngmpi import *\n")
self.runsource("pprint=lambda p='':print('Process ' + str(ngmpi.Rank()) + '\\n'+str(p)+'\\n')\n")
self.locals.update(locals())
self.locals.update(globals())
sys.ps1 = "MPI >>> "
sys.ps2 = "MPI ... "
code.InteractiveConsole.interact(self,'')
sys.ps1 = ">>> "
sys.ps2 = "... "
def Barrier(self):
source = 'ngmpi.Barrier()'
ngmpi.SendCommand('ngs_py '+source)
code.InteractiveConsole.runsource(self, source)
def MpiShell():
import code
try:
import readline
import rlcompleter
readline.parse_and_bind("tab:complete") # autocomplete
except:
try:
import pyreadline as readline
import rlcompleter
readline.parse_and_bind("tab:complete") # autocomplete
except:
print('readline not found')
vars2 = globals()
vars2.update(locals())
mshell = InteractiveMPIConsole(vars2)
mshell.interact()
def startConsole(vars2):
try:
import readline
import rlcompleter
if 'libedit' in readline.__doc__:
readline.parse_and_bind("bind ^I rl_complete")
else:
readline.parse_and_bind("tab: complete")
except:
try:
import pyreadline as readline
import rlcompleter
readline.parse_and_bind("tab:complete") # autocomplete
except:
print('readline not found')
shell = code.InteractiveConsole(vars2)
shell.push('from netgen import *')
shell.push('from ngsolve import *')
shell.interact(banner="NGS-Python console is up ...")