We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ed0b92 commit 94a31ebCopy full SHA for 94a31eb
ansys/mapdl/core/jupyter.py
@@ -36,7 +36,6 @@ def launch_mapdl_on_cluster(
36
verbose=False,
37
start_timeout=600,
38
tag="latest",
39
- **kwargs,
40
):
41
"""Start MAPDL on the ANSYS jupyter cluster in gRPC mode.
42
@@ -123,7 +122,13 @@ def launch_mapdl_on_cluster(
123
122
124
additional_switches += f"-m -{memory} -np {nproc}"
125
args = additional_switches.split()
126
- ip, name = manager.spawn_mapdl(version=tag, args=args, verbose=verbose)
+ ip, name = manager.spawn_mapdl(
+ version=tag,
127
+ args=args,
128
+ verbose=verbose,
129
+ cpu=1000*nproc,
130
+ memory=memory,
131
+ )
132
133
# connect to the pod instance
134
from ansys.mapdl.core import Mapdl
0 commit comments