We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a307845 commit 27448bcCopy full SHA for 27448bc
nipype/pipeline/plugins/multiproc.py
@@ -140,9 +140,8 @@ def __init__(self, plugin_args=None):
140
# total no. of processes allowed on all gpus
141
if self.n_gpu_procs > self.n_gpus_visible:
142
logger.info(
143
- 'Total number of GPUs proc requested (%d) exceeds the available number of GPUs (%d) on the system. Using requested GPU slots at your own risk!'
144
- % (self.n_gpu_procs, self.n_gpus_visible)
145
- )
+ 'Total number of GPUs proc requested (%d) exceeds the available number of GPUs (%d) on the system. Using requested GPU slots at your own risk!',
+ self.n_gpu_procs, self.n_gpus_visible)
146
147
# Instantiate different thread pools for non-daemon processes
148
logger.debug(
0 commit comments