X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e892c7ee96f28bef7d5b2a9314eb9549ee56634d..ad9170e0371fe45da29405338efd5f5da58c0abc:/doc/_includes/_container_runtime_constraints.liquid diff --git a/doc/_includes/_container_runtime_constraints.liquid b/doc/_includes/_container_runtime_constraints.liquid index 06bfb4f5da..3b8df32d4b 100644 --- a/doc/_includes/_container_runtime_constraints.liquid +++ b/doc/_includes/_container_runtime_constraints.liquid @@ -1,4 +1,10 @@ -Runtime constraints +{% comment %} +Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: CC-BY-SA-3.0 +{% endcomment %} + +h2. Runtime constraints Runtime constraints restrict the container's access to compute resources and the outside world (in addition to its explicitly stated inputs and output). @@ -6,5 +12,13 @@ table(table table-bordered table-condensed). |_. Key|_. Type|_. Description|_. Notes| |ram|integer|Number of ram bytes to be used to run this process.|Optional. However, a ContainerRequest that is in "Committed" state must provide this.| |vcpus|integer|Number of cores to be used to run this process.|Optional. However, a ContainerRequest that is in "Committed" state must provide this.| +|keep_cache_ram|integer|Number of keep cache bytes to be used to run this process.|Optional.| |API|boolean|When set, ARVADOS_API_HOST and ARVADOS_API_TOKEN will be set, and container will have networking enabled to access the Arvados API server.|Optional.| -|partition|array of strings|Specify the names of one or more compute partitions that may run this container. If not provided, the system chooses where to run the container.|Optional.| +|cuda|object|Request CUDA GPU support, see below|Optional.| + +h3. CUDA GPU support + +table(table table-bordered table-condensed). +|device_count|int|Number of GPUs to request.|Count greater than 0 enables CUDA GPU support.| +|driver_version|string|Minimum CUDA driver version, in "X.Y" format.|Required when device_count > 0| +|hardware_capability|string|Minimum CUDA hardware capability, in "X.Y" format.|Required when device_count > 0|