modal 1.1.1.dev41__py3-none-any.whl → 1.1.2.dev0__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.
Potentially problematic release.
This version of modal might be problematic. Click here for more details.
- modal/_runtime/gpu_memory_snapshot.py +158 -54
- modal/client.pyi +2 -2
- modal/functions.pyi +6 -6
- modal/image.py +8 -2
- modal/volume.py +1 -1
- modal/volume.pyi +3 -3
- {modal-1.1.1.dev41.dist-info → modal-1.1.2.dev0.dist-info}/METADATA +1 -1
- {modal-1.1.1.dev41.dist-info → modal-1.1.2.dev0.dist-info}/RECORD +16 -16
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +174 -174
- modal_proto/api_pb2.pyi +6 -2
- modal_version/__init__.py +1 -1
- {modal-1.1.1.dev41.dist-info → modal-1.1.2.dev0.dist-info}/WHEEL +0 -0
- {modal-1.1.1.dev41.dist-info → modal-1.1.2.dev0.dist-info}/entry_points.txt +0 -0
- {modal-1.1.1.dev41.dist-info → modal-1.1.2.dev0.dist-info}/licenses/LICENSE +0 -0
- {modal-1.1.1.dev41.dist-info → modal-1.1.2.dev0.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
|
@@ -9788,6 +9788,7 @@ class TaskInfo(google.protobuf.message.Message):
|
|
|
9788
9788
|
GPU_TYPE_FIELD_NUMBER: builtins.int
|
|
9789
9789
|
SANDBOX_ID_FIELD_NUMBER: builtins.int
|
|
9790
9790
|
SNAPSHOT_BEHAVIOR_FIELD_NUMBER: builtins.int
|
|
9791
|
+
GPU_CONFIG_FIELD_NUMBER: builtins.int
|
|
9791
9792
|
id: builtins.str
|
|
9792
9793
|
started_at: builtins.float
|
|
9793
9794
|
finished_at: builtins.float
|
|
@@ -9797,6 +9798,8 @@ class TaskInfo(google.protobuf.message.Message):
|
|
|
9797
9798
|
gpu_type: builtins.str
|
|
9798
9799
|
sandbox_id: builtins.str
|
|
9799
9800
|
snapshot_behavior: global___TaskSnapshotBehavior.ValueType
|
|
9801
|
+
@property
|
|
9802
|
+
def gpu_config(self) -> global___GPUConfig: ...
|
|
9800
9803
|
def __init__(
|
|
9801
9804
|
self,
|
|
9802
9805
|
*,
|
|
@@ -9808,9 +9811,10 @@ class TaskInfo(google.protobuf.message.Message):
|
|
|
9808
9811
|
gpu_type: builtins.str = ...,
|
|
9809
9812
|
sandbox_id: builtins.str = ...,
|
|
9810
9813
|
snapshot_behavior: global___TaskSnapshotBehavior.ValueType = ...,
|
|
9814
|
+
gpu_config: global___GPUConfig | None = ...,
|
|
9811
9815
|
) -> None: ...
|
|
9812
|
-
def HasField(self, field_name: typing_extensions.Literal["result", b"result"]) -> builtins.bool: ...
|
|
9813
|
-
def ClearField(self, field_name: typing_extensions.Literal["enqueued_at", b"enqueued_at", "finished_at", b"finished_at", "gpu_type", b"gpu_type", "id", b"id", "result", b"result", "sandbox_id", b"sandbox_id", "snapshot_behavior", b"snapshot_behavior", "started_at", b"started_at"]) -> None: ...
|
|
9816
|
+
def HasField(self, field_name: typing_extensions.Literal["gpu_config", b"gpu_config", "result", b"result"]) -> builtins.bool: ...
|
|
9817
|
+
def ClearField(self, field_name: typing_extensions.Literal["enqueued_at", b"enqueued_at", "finished_at", b"finished_at", "gpu_config", b"gpu_config", "gpu_type", b"gpu_type", "id", b"id", "result", b"result", "sandbox_id", b"sandbox_id", "snapshot_behavior", b"snapshot_behavior", "started_at", b"started_at"]) -> None: ...
|
|
9814
9818
|
|
|
9815
9819
|
global___TaskInfo = TaskInfo
|
|
9816
9820
|
|
modal_version/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|