modal 0.72.32__py3-none-any.whl → 0.72.34__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/client.pyi +2 -2
- modal/gpu.py +16 -21
- modal/sandbox.py +4 -2
- {modal-0.72.32.dist-info → modal-0.72.34.dist-info}/METADATA +1 -1
- {modal-0.72.32.dist-info → modal-0.72.34.dist-info}/RECORD +13 -13
- modal_proto/api.proto +2 -1
- modal_proto/api_pb2.py +416 -416
- modal_proto/api_pb2.pyi +5 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.72.32.dist-info → modal-0.72.34.dist-info}/LICENSE +0 -0
- {modal-0.72.32.dist-info → modal-0.72.34.dist-info}/WHEEL +0 -0
- {modal-0.72.32.dist-info → modal-0.72.34.dist-info}/entry_points.txt +0 -0
- {modal-0.72.32.dist-info → modal-0.72.34.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -5341,17 +5341,21 @@ class GPUConfig(google.protobuf.message.Message):
|
|
5341
5341
|
TYPE_FIELD_NUMBER: builtins.int
|
5342
5342
|
COUNT_FIELD_NUMBER: builtins.int
|
5343
5343
|
MEMORY_FIELD_NUMBER: builtins.int
|
5344
|
+
GPU_TYPE_FIELD_NUMBER: builtins.int
|
5344
5345
|
type: global___GPUType.ValueType
|
5346
|
+
"""Deprecated, at some point"""
|
5345
5347
|
count: builtins.int
|
5346
5348
|
memory: builtins.int
|
5349
|
+
gpu_type: builtins.str
|
5347
5350
|
def __init__(
|
5348
5351
|
self,
|
5349
5352
|
*,
|
5350
5353
|
type: global___GPUType.ValueType = ...,
|
5351
5354
|
count: builtins.int = ...,
|
5352
5355
|
memory: builtins.int = ...,
|
5356
|
+
gpu_type: builtins.str = ...,
|
5353
5357
|
) -> None: ...
|
5354
|
-
def ClearField(self, field_name: typing_extensions.Literal["count", b"count", "memory", b"memory", "type", b"type"]) -> None: ...
|
5358
|
+
def ClearField(self, field_name: typing_extensions.Literal["count", b"count", "gpu_type", b"gpu_type", "memory", b"memory", "type", b"type"]) -> None: ...
|
5355
5359
|
|
5356
5360
|
global___GPUConfig = GPUConfig
|
5357
5361
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|