From abd1163731551dd95b2b8009b58ca005350203da Mon Sep 17 00:00:00 2001 From: Victor Chang Date: Thu, 8 Jun 2023 11:55:34 -0700 Subject: [PATCH] Remove sharedMemoryLimit as no vendors support it Signed-off-by: Victor Chang --- guidelines/monai-application-package.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/guidelines/monai-application-package.md b/guidelines/monai-application-package.md index 0dc46f2..31bd433 100644 --- a/guidelines/monai-application-package.md +++ b/guidelines/monai-application-package.md @@ -542,7 +542,6 @@ The Package Manifest file provides information about the MAP's package layout. I | `resources.gpuMemory` | No | `1Gi` | string | memory size | The GPU memory required by the Application or the Fragment. | | `resources.gpuMemoryLimit` | No | N/A | string | memory size | The GPU memory limit for the Application or the Fragment. (1) | | `resources.sharedMemory` | No | `64Mi` | string | memory size | The shared memory required by the Application or the Fragment. | -| `resources.sharedMemoryLimit` | No | N/A | string | memory size | The shared memory limit for the Application or the Fragment. (1) | | `resources.fragments` | No | N/A | object | objects | Nested objects which describe resources for a Multi-Fragment Application. | | `resources.fragments.` | **Yes** | N/A | string | string | Name of the fragment. | | `resources.fragments..cpu` | No | `1` | decimal (2) | number | Number of CPU cores required by the Fragment. | @@ -554,7 +553,6 @@ The Package Manifest file provides information about the MAP's package layout. I | `resources.fragments..gpuMemory` | No | `1Gi` | string | memory size | The GPU memory required by the Fragment. | | `resources.fragments..gpuMemoryLimit` | No | N/A | string | memory size | The GPU memory limit for the Fragment. (1) | | `resources.fragments..sharedMemory` | No | `64Mi` | string | memory size | The shared memory required by the Fragment. | -| `resources.fragments..sharedMemoryLimit` | No | N/A | string | memory size | The shared memory limit for the Fragment. (1) | | `version` | No | 0.0.0 | string | semantic version | Version of the package. | > [Notes]