Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 20 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -292,24 +292,31 @@ $RECYCLE.BIN/
*.msp

# Windows shortcuts
*.lnk
test_projects/cuda-pytorch-template
# !test_automation/logs/*.log
# !test_automation/logs/transformers/*/*/*
# !test_automation/reports/*
# !test_automation/reports/*/*
.master-planning
.project-planning
.project-planning/
test_projects/
backup/
.vscode
*.bak*
node_modules/
.project-planning
.master-planning
*.lnk
*.wav
*.wav
*.code-workspace
backup/
bashexp*.txt
custom-tts/
node_modules/
output.txt
.vscode/
tmp
*.wav
test_projects/
test_projects/*
test_projects/cuda-pytorch-template
test_projects/custom-tts/samples/cpu_output.wav
custom-tts/
tmp
torchdevice_tts_final_patch.txt
torchdevice_tts_pr_patch.txt
torchdevice_tts_patch.txt
*.wav
torchdevice_tts_pr_patch.txt
TorchDevice.original
.DS_Store
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# CHANGELOG

## 0.5.1 - 2025-06-20

### Improved

- **Test Reporting**:
- Enhanced the `generate_test_report.py` script to make test file paths in the Markdown report clickable, improving navigation from the report directly to the source code.
- Corrected relative link paths to ensure they resolve correctly from the report's location in `test_automation/reports/`.
- **Documentation**:
- Updated `test_automation/README.md` with a new section detailing required system-level dependencies (Tesseract, image libraries) for running the full Transformers test suite.
- Added a link in the main project `README.md` pointing to the advanced test automation guide for better discoverability.


## 0.4.2 - 2025-06-08

### Added
Expand Down
21 changes: 21 additions & 0 deletions TorchDevice/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# file generated by setuptools-scm
# don't change, don't track in version control

__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]

TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple
from typing import Union

VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object

version: str
__version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE

__version__ = version = '0.5.2.dev0+g241a2f9.d20250621'
__version_tuple__ = version_tuple = (0, 5, 2, 'dev0', 'g241a2f9.d20250621')
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='TorchDevice',
version='0.4.1',

description='Intercepts PyTorch calls to enable transparent code portability between CUDA and MPS hardware.',
author='unixwzrd',
author_email='unixwzrd@unixwzrd.ai',
Expand Down
Loading