b10-transfer 0.1.0__tar.gz → 0.1.1__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: b10-transfer
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Distributed PyTorch compilation cache for Baseten - Environment-aware, lock-free compilation cache management
5
5
  License: MIT
6
6
  Keywords: pytorch,torch.compile,cache,machine-learning,inference
@@ -214,6 +214,6 @@ Enable debug logging:
214
214
 
215
215
  ```python
216
216
  import logging
217
- logging.getLogger('b10_tcache').setLevel(logging.DEBUG)
217
+ logging.getLogger('b10_transfer').setLevel(logging.DEBUG)
218
218
  ```
219
219
 
@@ -185,5 +185,5 @@ Enable debug logging:
185
185
 
186
186
  ```python
187
187
  import logging
188
- logging.getLogger('b10_tcache').setLevel(logging.DEBUG)
188
+ logging.getLogger('b10_transfer').setLevel(logging.DEBUG)
189
189
  ```
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "b10-transfer"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Distributed PyTorch compilation cache for Baseten - Environment-aware, lock-free compilation cache management"
9
9
  authors = ["Shounak Ray <shounak.noreply@baseten.co>", "Fred Liu <fred.liu.noreply@baseten.co>"]
10
10
  maintainers = ["Fred Liu <fred.liu.noreply@baseten.co>", "Shounak Ray <shounak.noreply@baseten.co>"]
@@ -21,7 +21,7 @@ from .info import get_cache_info, list_available_caches
21
21
  from .constants import SaveStatus, LoadStatus, TransferStatus, AsyncTransferStatus
22
22
 
23
23
  # Version
24
- __version__ = "0.1.0"
24
+ __version__ = "0.1.1"
25
25
 
26
26
  __all__ = [
27
27
  "CacheError",
@@ -1,4 +1,4 @@
1
- """Cooperative cleanup utilities for b10-tcache.
1
+ """Cooperative cleanup utilities for b10-transfer.
2
2
 
3
3
  This module provides cooperative cleanup functionality where each pod/replica
4
4
  helps maintain the health of shared resources in b10fs by removing stale
@@ -1,4 +1,4 @@
1
- """Configuration constants for b10-tcache.
1
+ """Configuration constants for b10-transfer.
2
2
 
3
3
  This module defines configuration constants for the PyTorch compilation cache system.
4
4
  Some values can be overridden by environment variables, but security caps are enforced
@@ -1,4 +1,4 @@
1
- """Space monitoring utilities for b10-tcache.
1
+ """Space monitoring utilities for b10-transfer.
2
2
 
3
3
  This module provides disk space monitoring functionality to prevent cache operations
4
4
  from exhausting available disk space and causing system instability.