modal 0.68.43__py3-none-any.whl → 0.68.44__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 +22 -0
- {modal-0.68.43.dist-info → modal-0.68.44.dist-info}/METADATA +1 -1
- {modal-0.68.43.dist-info → modal-0.68.44.dist-info}/RECORD +9 -9
- modal_version/_version_generated.py +1 -1
- {modal-0.68.43.dist-info → modal-0.68.44.dist-info}/LICENSE +0 -0
- {modal-0.68.43.dist-info → modal-0.68.44.dist-info}/WHEEL +0 -0
- {modal-0.68.43.dist-info → modal-0.68.44.dist-info}/entry_points.txt +0 -0
- {modal-0.68.43.dist-info → modal-0.68.44.dist-info}/top_level.txt +0 -0
modal/client.pyi
CHANGED
@@ -26,7 +26,7 @@ class _Client:
|
|
26
26
|
_stub: typing.Optional[modal_proto.api_grpc.ModalClientStub]
|
27
27
|
|
28
28
|
def __init__(
|
29
|
-
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.68.
|
29
|
+
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.68.44"
|
30
30
|
): ...
|
31
31
|
def is_closed(self) -> bool: ...
|
32
32
|
@property
|
@@ -81,7 +81,7 @@ class Client:
|
|
81
81
|
_stub: typing.Optional[modal_proto.api_grpc.ModalClientStub]
|
82
82
|
|
83
83
|
def __init__(
|
84
|
-
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.68.
|
84
|
+
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.68.44"
|
85
85
|
): ...
|
86
86
|
def is_closed(self) -> bool: ...
|
87
87
|
@property
|
modal/gpu.py
CHANGED
@@ -137,6 +137,27 @@ class H100(_GPUConfig):
|
|
137
137
|
return f"GPU(H100, count={self.count})"
|
138
138
|
|
139
139
|
|
140
|
+
class L40S(_GPUConfig):
|
141
|
+
"""
|
142
|
+
[NVIDIA L40S](https://www.nvidia.com/en-us/data-center/l40s/) GPU class.
|
143
|
+
|
144
|
+
The L40S is a data center GPU for the Ada Lovelace architecture. It has 48 GB of on-chip
|
145
|
+
GDDR6 RAM and enhanced support for FP8 precision.
|
146
|
+
"""
|
147
|
+
|
148
|
+
def __init__(
|
149
|
+
self,
|
150
|
+
*,
|
151
|
+
# Number of GPUs per container. Defaults to 1.
|
152
|
+
# Useful if you have very large models that don't fit on a single GPU.
|
153
|
+
count: int = 1,
|
154
|
+
):
|
155
|
+
super().__init__(api_pb2.GPU_TYPE_L40S, count)
|
156
|
+
|
157
|
+
def __repr__(self):
|
158
|
+
return f"GPU(L40S, count={self.count})"
|
159
|
+
|
160
|
+
|
140
161
|
class Any(_GPUConfig):
|
141
162
|
"""Selects any one of the GPU classes available within Modal, according to availability."""
|
142
163
|
|
@@ -154,6 +175,7 @@ STRING_TO_GPU_CONFIG: dict[str, Callable] = {
|
|
154
175
|
"a100-80gb": lambda: A100(size="80GB"),
|
155
176
|
"h100": H100,
|
156
177
|
"a10g": A10G,
|
178
|
+
"l40s": L40S,
|
157
179
|
"any": Any,
|
158
180
|
}
|
159
181
|
display_string_to_config = "\n".join(f'- "{key}" → `{c()}`' for key, c in STRING_TO_GPU_CONFIG.items() if key != "inf2")
|
@@ -19,7 +19,7 @@ modal/app.py,sha256=JWefPs4yB70BKQwSZejB_4_muhxn63cC9UmnNvpQ9XY,45526
|
|
19
19
|
modal/app.pyi,sha256=FYPCEJNhof4YF6HIuNP_2yG6s2PgZnKW9tO1hFE6sfA,25194
|
20
20
|
modal/call_graph.py,sha256=1g2DGcMIJvRy-xKicuf63IVE98gJSnQsr8R_NVMptNc,2581
|
21
21
|
modal/client.py,sha256=JAnd4-GCN093BwkvOFAK5a6iy5ycxofjpUncMxlrIMw,15253
|
22
|
-
modal/client.pyi,sha256=
|
22
|
+
modal/client.pyi,sha256=6YwJJifKtD3Mm8_-ZszXlHfxRIVPUL8OBfSqch20djM,7280
|
23
23
|
modal/cloud_bucket_mount.py,sha256=G7T7jWLD0QkmrfKR75mSTwdUZ2xNfj7pkVqb4ipmxmI,5735
|
24
24
|
modal/cloud_bucket_mount.pyi,sha256=CEi7vrH3kDUF4LAy4qP6tfImy2UJuFRcRbsgRNM1wo8,1403
|
25
25
|
modal/cls.py,sha256=3hjb0JcoPjxKZNeK22f5rR43bZRBjoRI7_EMZXY7YrE,31172
|
@@ -38,7 +38,7 @@ modal/file_io.pyi,sha256=GMhCCRyMftXYI3HqI9EdGPOx70CbCNi-VC5Sfy5TYnc,7631
|
|
38
38
|
modal/file_pattern_matcher.py,sha256=V6P74Vc7LAuBFe_uepIaZmoDJiuAvqjFibe0GcMJwxo,5119
|
39
39
|
modal/functions.py,sha256=-PHjDWuGBfoHYDiZc8eJtD2W9ka-c4jla2vHvA0z1fI,67821
|
40
40
|
modal/functions.pyi,sha256=snttn47K81lKhmrCLWNVZelZTDhNsbxtw4l1DlLDR74,25317
|
41
|
-
modal/gpu.py,sha256=
|
41
|
+
modal/gpu.py,sha256=MTxj6ql8EpgfBg8YmZ5a1cLznyuZFssX1qXbEX4LKVM,7503
|
42
42
|
modal/image.py,sha256=sv45bYaF5Jlmk8mQE3EDADYyXLi14hOe2CUM0Zb8Xao,82243
|
43
43
|
modal/image.pyi,sha256=VY_4HnDBhW8u_Zd3n-YBZ1H9idbTorWGwzsAzY7-B70,24213
|
44
44
|
modal/io_streams.py,sha256=QkQiizKRzd5bnbKQsap31LJgBYlAnj4-XkV_50xPYX0,15079
|
@@ -164,10 +164,10 @@ modal_proto/options_pb2_grpc.pyi,sha256=CImmhxHsYnF09iENPoe8S4J-n93jtgUYD2JPAc0y
|
|
164
164
|
modal_proto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
165
165
|
modal_version/__init__.py,sha256=RT6zPoOdFO99u5Wcxxaoir4ZCuPTbQ22cvzFAXl3vUY,470
|
166
166
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
167
|
-
modal_version/_version_generated.py,sha256=
|
168
|
-
modal-0.68.
|
169
|
-
modal-0.68.
|
170
|
-
modal-0.68.
|
171
|
-
modal-0.68.
|
172
|
-
modal-0.68.
|
173
|
-
modal-0.68.
|
167
|
+
modal_version/_version_generated.py,sha256=Vj3LhncTs1VLswz6iYvhgi1CD_2zf1NsC4OECJ8s9f0,149
|
168
|
+
modal-0.68.44.dist-info/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
|
169
|
+
modal-0.68.44.dist-info/METADATA,sha256=dHm34Ct-v2eY0T4pGJM2o5uUuDeESNSLj5uYko2hPQI,2329
|
170
|
+
modal-0.68.44.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
171
|
+
modal-0.68.44.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
172
|
+
modal-0.68.44.dist-info/top_level.txt,sha256=1nvYbOSIKcmU50fNrpnQnrrOpj269ei3LzgB6j9xGqg,64
|
173
|
+
modal-0.68.44.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|