From f2119d663257a5de8aac5255b88b4304198061cc Mon Sep 17 00:00:00 2001 From: "Christopher J. Markiewicz" Date: Wed, 19 Mar 2025 19:10:02 -0400 Subject: [PATCH 1/2] doc: 1.10.0 changelog --- doc/changelog/1.X.X-changelog.rst | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/doc/changelog/1.X.X-changelog.rst b/doc/changelog/1.X.X-changelog.rst index a51ef7f13e..6373d501f7 100644 --- a/doc/changelog/1.X.X-changelog.rst +++ b/doc/changelog/1.X.X-changelog.rst @@ -1,3 +1,24 @@ +1.10.0 (March 20, 2025) +======================= + +New feature release in the 1.10.x series. + +This release adds GPUs to multiprocess resource management. +In general, no changes to existing code should be required if the GPU-enabled +interface has a ``use_gpu`` input. +The ``n_gpu_procs`` can be used to set the number of GPU processes that may +be run in parallel, which will override the default of GPUs identified by +``nvidia-smi``, or 1 if no GPUs are detected. + + * FIX: Reimplement ``gpu_count()`` (https://github.com/nipy/nipype/pull/3718) + * FIX: Avoid 0D array in ``algorithms.misc.merge_rois`` (https://github.com/nipy/nipype/pull/3713) + * FIX: Allow nipype.sphinx.ext.apidoc Config to work with Sphinx 8.2.1+ (https://github.com/nipy/nipype/pull/3716) + * FIX: Resolve crashes when running workflows with updatehash=True (https://github.com/nipy/nipype/pull/3709) + * ENH: Support for gpu queue (https://github.com/nipy/nipype/pull/3642) + * ENH: Update to .wci.yml (https://github.com/nipy/nipype/pull/3708) + * ENH: Add Workflow Community Initiative (WCI) descriptor (https://github.com/nipy/nipype/pull/3608) + + 1.9.2 (December 17, 2024) ========================= From 1c9953f3397d434fb7296c189b2c828490612d66 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Wed, 19 Mar 2025 19:17:56 -0400 Subject: [PATCH 2/2] Update doc/changelog/1.X.X-changelog.rst --- doc/changelog/1.X.X-changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/changelog/1.X.X-changelog.rst b/doc/changelog/1.X.X-changelog.rst index 6373d501f7..e31e508edf 100644 --- a/doc/changelog/1.X.X-changelog.rst +++ b/doc/changelog/1.X.X-changelog.rst @@ -1,4 +1,4 @@ -1.10.0 (March 20, 2025) +1.10.0 (March 19, 2025) ======================= New feature release in the 1.10.x series.