manicule-mlx 0.1.0__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.
- manicule_mlx-0.1.0/.gitignore +46 -0
- manicule_mlx-0.1.0/LICENSE +674 -0
- manicule_mlx-0.1.0/PKG-INFO +96 -0
- manicule_mlx-0.1.0/README.md +76 -0
- manicule_mlx-0.1.0/pyproject.toml +47 -0
- manicule_mlx-0.1.0/src/manicule_mlx/__init__.py +94 -0
- manicule_mlx-0.1.0/src/manicule_mlx/backend.py +251 -0
- manicule_mlx-0.1.0/src/manicule_mlx/config.py +41 -0
- manicule_mlx-0.1.0/src/manicule_mlx/py.typed +0 -0
- manicule_mlx-0.1.0/src/manicule_mlx/runtime.py +40 -0
- manicule_mlx-0.1.0/tests/conftest.py +17 -0
- manicule_mlx-0.1.0/tests/test_memory.py +376 -0
- manicule_mlx-0.1.0/tests/test_parity.py +394 -0
- manicule_mlx-0.1.0/tools/qualify_memory.py +490 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# IDE
|
|
2
|
+
.idea/
|
|
3
|
+
.vscode/
|
|
4
|
+
|
|
5
|
+
# Python
|
|
6
|
+
__pycache__/
|
|
7
|
+
*.py[cod]
|
|
8
|
+
.venv/
|
|
9
|
+
venv/
|
|
10
|
+
.pytest_cache/
|
|
11
|
+
.ruff_cache/
|
|
12
|
+
*.egg-info/
|
|
13
|
+
build/
|
|
14
|
+
dist/
|
|
15
|
+
.coverage
|
|
16
|
+
.coverage.*
|
|
17
|
+
htmlcov/
|
|
18
|
+
|
|
19
|
+
# Scratch databases. `alembic` used by hand, and the `alembic check` CI step, both write one
|
|
20
|
+
# into the working directory; the real database lives in the data directory, not here.
|
|
21
|
+
manicule.db
|
|
22
|
+
manicule.db-wal
|
|
23
|
+
manicule.db-shm
|
|
24
|
+
|
|
25
|
+
# uv.lock is deliberately committed: CI installs with --frozen, so a build here is the
|
|
26
|
+
# build that runs there.
|
|
27
|
+
|
|
28
|
+
# The tree-sitter pack, staged for the image build by CI and named for the pack release it
|
|
29
|
+
# holds. Compiled shared libraries for one platform and one release — the definition of
|
|
30
|
+
# something rebuilt rather than committed. The directory itself stays, so that the Dockerfile's
|
|
31
|
+
# `COPY .ci/grammars` resolves on a clean clone.
|
|
32
|
+
.ci/grammars/*
|
|
33
|
+
!.ci/grammars/.gitkeep
|
|
34
|
+
|
|
35
|
+
# The link checker's machine-readable report, written by the docs job and by anyone running
|
|
36
|
+
# lychee the way that job does. `tools/check_link_report.py` is what reads it.
|
|
37
|
+
lychee-report.json
|
|
38
|
+
|
|
39
|
+
# macOS
|
|
40
|
+
.DS_Store
|
|
41
|
+
|
|
42
|
+
# Claude Code worktrees
|
|
43
|
+
.claude/worktrees/
|
|
44
|
+
|
|
45
|
+
# Local bug prompts and investigation notes
|
|
46
|
+
bugs/
|