Skip to content

Commit

Permalink
Bump version to 1.2.32 and explicitly set gpu_limit in plugin meta
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolphpienaar committed May 3, 2024
1 parent a91e6a6 commit 6b3b79a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spleenseg/spleenseg.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
╚══════╝╚═╝ ╚══════╝╚══════╝╚══════╝╚═╝ ╚═══╝╚══════╝╚══════╝ ╚═════╝
"""

__version__ = "1.2.30"
__version__ = "1.2.32"
import spleenseg.splparser as spl

description: str = """
Expand Down Expand Up @@ -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):
"""
Expand Down

0 comments on commit 6b3b79a

Please sign in to comment.