42 |
from esys.escript import C_GeneralTensorProduct |
from esys.escript import C_GeneralTensorProduct |
43 |
from esys.escript import getVersion |
from esys.escript import getVersion |
44 |
from esys.escript import printParallelThreadCounts |
from esys.escript import printParallelThreadCounts |
45 |
|
from esys.escript import listEscriptParams |
46 |
|
|
47 |
#========================================================= |
#========================================================= |
48 |
# some helpers: |
# some helpers: |
5223 |
|
|
5224 |
""" |
""" |
5225 |
raise NotImplementedError |
raise NotImplementedError |
5226 |
|
|
5227 |
|
def showEscriptParams(): |
5228 |
|
""" |
5229 |
|
Display the parameters escript recognises with an explanation. |
5230 |
|
""" |
5231 |
|
p=listEscriptParams() |
5232 |
|
for name,desc in p: |
5233 |
|
print name+':\t'+desc |