From 3205aeafc5be909f584313f68b3028cad203faf3 Mon Sep 17 00:00:00 2001 From: Vipul Date: Fri, 18 Oct 2024 09:30:32 -0700 Subject: [PATCH] include l40s shapes --- ads/aqua/config/config.py | 1 + ads/aqua/config/deployment_config_defaults.json | 1 + ads/aqua/config/resource_limit_names.json | 1 + docs/source/release_notes.rst | 6 ++++++ pyproject.toml | 2 +- 5 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ads/aqua/config/config.py b/ads/aqua/config/config.py index 1cabc203c..1ccf2c703 100644 --- a/ads/aqua/config/config.py +++ b/ads/aqua/config/config.py @@ -40,6 +40,7 @@ def get_finetuning_config_defaults(): "VM.GPU.A10.2": {"batch_size": 1, "replica": "1-10"}, "BM.GPU.A10.4": {"batch_size": 1, "replica": 1}, "BM.GPU4.8": {"batch_size": 4, "replica": 1}, + "BM.GPU.L40S-NC.4": {"batch_size": 4, "replica": 1}, "BM.GPU.A100-v2.8": {"batch_size": 6, "replica": 1}, "BM.GPU.H100.8": {"batch_size": 6, "replica": 1}, } diff --git a/ads/aqua/config/deployment_config_defaults.json b/ads/aqua/config/deployment_config_defaults.json index 21572ee99..9caa8ef11 100644 --- a/ads/aqua/config/deployment_config_defaults.json +++ b/ads/aqua/config/deployment_config_defaults.json @@ -30,6 +30,7 @@ "VM.GPU.A10.2", "BM.GPU.A10.4", "BM.GPU4.8", + "BM.GPU.L40S-NC.4", "BM.GPU.A100-v2.8", "BM.GPU.H100.8", "VM.Standard.A1.Flex" diff --git a/ads/aqua/config/resource_limit_names.json b/ads/aqua/config/resource_limit_names.json index d3e23370e..3aabcfaee 100644 --- a/ads/aqua/config/resource_limit_names.json +++ b/ads/aqua/config/resource_limit_names.json @@ -2,6 +2,7 @@ "BM.GPU.A10.4": "ds-gpu-a10-count", "BM.GPU.A100-v2.8": "ds-gpu-a100-v2-count", "BM.GPU.H100.8": "ds-gpu-h100-count", + "BM.GPU.L40S-NC.4": "ds-gpu-l40s-nc-count", "BM.GPU4.8": "ds-gpu4-count", "VM.GPU.A10.1": "ds-gpu-a10-count", "VM.GPU.A10.2": "ds-gpu-a10-count" diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index c600dee05..0aa2789e5 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -2,6 +2,12 @@ Release Notes ============= +2.12.2 +------- +Release date: October 18, 2024 + +* Introduced enhancements for AI Quick Actions. + 2.12.1 ------- Release date: October 10, 2024 diff --git a/pyproject.toml b/pyproject.toml index 1b8f15ade..d1bd85131 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi" # Required name = "oracle_ads" # the install (PyPI) name; name for local build in [tool.flit.module] section below -version = "2.12.1" +version = "2.12.2" # Optional description = "Oracle Accelerated Data Science SDK"