From 6b3b79afcfe849b1a7018bc2832aae20f29017c8 Mon Sep 17 00:00:00 2001 From: Rudolph Pienaar Date: Fri, 3 May 2024 13:51:28 -0400 Subject: [PATCH] Bump version to 1.2.32 and explicitly set gpu_limit in plugin meta --- spleenseg/spleenseg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spleenseg/spleenseg.py b/spleenseg/spleenseg.py index 0378caf..30201e1 100644 --- a/spleenseg/spleenseg.py +++ b/spleenseg/spleenseg.py @@ -46,7 +46,7 @@ ╚══════╝╚═╝ ╚══════╝╚══════╝╚══════╝╚═╝ ╚═══╝╚══════╝╚══════╝ ╚═════╝ """ -__version__ = "1.2.30" +__version__ = "1.2.32" import spleenseg.splparser as spl description: str = """ @@ -201,7 +201,7 @@ def inference_pfmsDo(neuralNet: neuralnet.NeuralNet, options: Namespace) -> bool category="", # ref. https://chrisstore.co/plugins min_memory_limit="16Gi", # supported units: Mi, Gi min_cpu_limit="1000m", # millicores, e.g. "1000m" = 1 CPU core - min_gpu_limit=0, # set min_gpu_limit=1 to enable GPU + min_gpu_limit=1, # set min_gpu_limit=1 to enable GPU ) def main(options: Namespace, inputdir: Path, outputdir: Path): """