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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ This file contains the changelog for the Deeploy project. The changelog is divid
- Use Pre-Commit in CI [#159](https://github.com/pulp-platform/Deeploy/pull/159)
- Deeploy-GAP9 Platform [#143](https://github.com/pulp-platform/Deeploy/pull/143)
- Update CLI interface Across Project, Fix Tutorial, and Remove Legacy Test [#157](https://github.com/pulp-platform/Deeploy/pull/157)
- Fix for python error when using python 3.12.11 [#189]( https://github.com/pulp-platform/Deeploy/pull/189)

### Added
- Add many missing docstrings
Expand Down Expand Up @@ -50,6 +51,7 @@ This file contains the changelog for the Deeploy project. The changelog is divid
- Fix test paths in Deeploy 101 tutorial
- Fix tiling variable replacement corrupting static arrays by changing pointer update from value copy to address reassignment
- Reduce RunNetwork stack usage by scoping per-layer variables with braces and moving tileIdxPtr allocation into per-layer execution blocks
- Fix invalid escape sequence python error in DeeployTypes.py: appearing when using pytest to launch regressions

### Removed
- `testDMA.py` was an old test; we now have `test_dmas.py` instead.
Expand Down
4 changes: 2 additions & 2 deletions Deeploy/DeeployTypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -686,10 +686,10 @@ def __eq__(self, other):

def _mangle(self, name: str, repr: bool = True) -> str:
repStr = name
repStr = re.sub('\.', '_', repStr)
repStr = re.sub(r'\.', '_', repStr)
repStr = re.sub(':', '_', repStr)
if repr:
repStr = re.sub('\.', '_', self.name) + '_' + repStr
repStr = re.sub(r'\.', '_', self.name) + '_' + repStr
return repStr

def add(self, obj: VariableBuffer, ctxt: Literal['local', 'global'] = 'local', _id: str = ""):
Expand Down
Loading