Skip to content

Commit 678bb1a

Browse files
committed
let the inner interface set _n_procs and _mem_gb
1 parent d2599e2 commit 678bb1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/pipeline/engine/nodes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1147,8 +1147,8 @@ def _make_nodes(self, cwd=None):
11471147
for i in range(nitems):
11481148
nodename = '_' + self.name + str(i)
11491149
node = Node(deepcopy(self._interface),
1150-
n_procs=self.n_procs,
1151-
mem_gb=self.mem_gb,
1150+
n_procs=self._n_procs,
1151+
mem_gb=self._mem_gb,
11521152
overwrite=self.overwrite,
11531153
needed_outputs=self.needed_outputs,
11541154
run_without_submitting=self.run_without_submitting,

0 commit comments

Comments
 (0)