modal 0.73.162__py3-none-any.whl → 0.73.164__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- modal/_runtime/container_io_manager.py +11 -1
- modal/cli/programs/run_jupyter.py +1 -1
- modal/client.pyi +2 -2
- modal/functions.pyi +6 -6
- modal/image.py +1 -1
- modal/image.pyi +3 -1
- {modal-0.73.162.dist-info → modal-0.73.164.dist-info}/METADATA +1 -1
- {modal-0.73.162.dist-info → modal-0.73.164.dist-info}/RECORD +16 -16
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +294 -294
- modal_proto/api_pb2.pyi +5 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.73.162.dist-info → modal-0.73.164.dist-info}/WHEEL +0 -0
- {modal-0.73.162.dist-info → modal-0.73.164.dist-info}/entry_points.txt +0 -0
- {modal-0.73.162.dist-info → modal-0.73.164.dist-info}/licenses/LICENSE +0 -0
- {modal-0.73.162.dist-info → modal-0.73.164.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -7220,6 +7220,7 @@ class Resources(google.protobuf.message.Message):
|
|
7220
7220
|
MEMORY_MB_MAX_FIELD_NUMBER: builtins.int
|
7221
7221
|
EPHEMERAL_DISK_MB_FIELD_NUMBER: builtins.int
|
7222
7222
|
MILLI_CPU_MAX_FIELD_NUMBER: builtins.int
|
7223
|
+
RDMA_FIELD_NUMBER: builtins.int
|
7223
7224
|
memory_mb: builtins.int
|
7224
7225
|
"""MiB"""
|
7225
7226
|
milli_cpu: builtins.int
|
@@ -7232,6 +7233,8 @@ class Resources(google.protobuf.message.Message):
|
|
7232
7233
|
"""MiB"""
|
7233
7234
|
milli_cpu_max: builtins.int
|
7234
7235
|
"""milli CPU cores"""
|
7236
|
+
rdma: builtins.bool
|
7237
|
+
"""Whether to use RDMA interfaces"""
|
7235
7238
|
def __init__(
|
7236
7239
|
self,
|
7237
7240
|
*,
|
@@ -7241,9 +7244,10 @@ class Resources(google.protobuf.message.Message):
|
|
7241
7244
|
memory_mb_max: builtins.int = ...,
|
7242
7245
|
ephemeral_disk_mb: builtins.int = ...,
|
7243
7246
|
milli_cpu_max: builtins.int = ...,
|
7247
|
+
rdma: builtins.bool = ...,
|
7244
7248
|
) -> None: ...
|
7245
7249
|
def HasField(self, field_name: typing_extensions.Literal["gpu_config", b"gpu_config"]) -> builtins.bool: ...
|
7246
|
-
def ClearField(self, field_name: typing_extensions.Literal["ephemeral_disk_mb", b"ephemeral_disk_mb", "gpu_config", b"gpu_config", "memory_mb", b"memory_mb", "memory_mb_max", b"memory_mb_max", "milli_cpu", b"milli_cpu", "milli_cpu_max", b"milli_cpu_max"]) -> None: ...
|
7250
|
+
def ClearField(self, field_name: typing_extensions.Literal["ephemeral_disk_mb", b"ephemeral_disk_mb", "gpu_config", b"gpu_config", "memory_mb", b"memory_mb", "memory_mb_max", b"memory_mb_max", "milli_cpu", b"milli_cpu", "milli_cpu_max", b"milli_cpu_max", "rdma", b"rdma"]) -> None: ...
|
7247
7251
|
|
7248
7252
|
global___Resources = Resources
|
7249
7253
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|