podstack 1.2.2__tar.gz → 1.2.3__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.
- {podstack-1.2.2 → podstack-1.2.3}/PKG-INFO +1 -1
- {podstack-1.2.2 → podstack-1.2.3}/podstack/__init__.py +1 -1
- {podstack-1.2.2 → podstack-1.2.3}/podstack/annotations.py +3 -1
- {podstack-1.2.2 → podstack-1.2.3}/podstack.egg-info/PKG-INFO +1 -1
- {podstack-1.2.2 → podstack-1.2.3}/pyproject.toml +1 -1
- {podstack-1.2.2 → podstack-1.2.3}/LICENSE +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/README.md +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/client.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/exceptions.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/execution.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/gpu_runner.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/models.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/notebook.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/registry/__init__.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/registry/client.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/registry/exceptions.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/registry/experiment.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/registry/model.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack/registry/model_utils.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack.egg-info/SOURCES.txt +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack.egg-info/dependency_links.txt +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack.egg-info/requires.txt +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack.egg-info/top_level.txt +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack_gpu/__init__.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack_gpu/app.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack_gpu/exceptions.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack_gpu/image.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack_gpu/runner.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack_gpu/secret.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack_gpu/utils.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/podstack_gpu/volume.py +0 -0
- {podstack-1.2.2 → podstack-1.2.3}/setup.cfg +0 -0
|
@@ -176,8 +176,10 @@ class GPUConfig:
|
|
|
176
176
|
stripped = line.strip()
|
|
177
177
|
if stripped.startswith('@podstack.gpu') or stripped.startswith('@gpu'):
|
|
178
178
|
skip_decorator = True
|
|
179
|
-
# Count parentheses in this line
|
|
180
179
|
paren_depth += line.count('(') - line.count(')')
|
|
180
|
+
# Single-line decorator — reset immediately so def line isn't skipped
|
|
181
|
+
if paren_depth <= 0:
|
|
182
|
+
skip_decorator = False
|
|
181
183
|
continue
|
|
182
184
|
if skip_decorator:
|
|
183
185
|
# Continue skipping until parentheses are balanced
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|