dimthink-compiler 1.2.1
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.
- package/README.md +53 -0
- package/package.json +16 -0
package/README.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# DimThink Package (APT/Debian)
|
|
2
|
+
|
|
3
|
+
Debian packaging for `dimthink` compiler distribution via APT.
|
|
4
|
+
|
|
5
|
+
## Install via APT
|
|
6
|
+
|
|
7
|
+
### From PPA (when published)
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
sudo add-apt-repository ppa:pamdurham7-boop/dimthink
|
|
11
|
+
sudo apt update
|
|
12
|
+
sudo apt install dimthink
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### Build .deb locally
|
|
16
|
+
|
|
17
|
+
From repo root:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
# Install build dependencies
|
|
21
|
+
sudo apt install build-essential debhelper nasm
|
|
22
|
+
|
|
23
|
+
# Build Debian package
|
|
24
|
+
dpkg-buildpackage -us -uc
|
|
25
|
+
|
|
26
|
+
# Install the generated .deb
|
|
27
|
+
sudo dpkg -i ../dimthink_1.2.0-1_amd64.deb
|
|
28
|
+
sudo apt install -f # Install any missing dependencies
|
|
29
|
+
|
|
30
|
+
# Verify
|
|
31
|
+
dimthink --version
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Debian Packaging
|
|
35
|
+
|
|
36
|
+
The `debian/` directory contains:
|
|
37
|
+
- `control` — Package metadata and dependencies
|
|
38
|
+
- `changelog` — Version history
|
|
39
|
+
- `rules` — Build instructions
|
|
40
|
+
- `compat` — Debhelper compatibility version
|
|
41
|
+
|
|
42
|
+
## What Gets Installed
|
|
43
|
+
|
|
44
|
+
- `/usr/local/bin/dimthink` — Compiler binary
|
|
45
|
+
- Man pages (optional, can be added)
|
|
46
|
+
- Bash completion (optional, can be added)
|
|
47
|
+
|
|
48
|
+
## Links
|
|
49
|
+
|
|
50
|
+
- [Main Repository](https://github.com/pamdurham7-boop/Compiler)
|
|
51
|
+
- [Debian Wiki](https://wiki.debian.org/Packaging)
|
|
52
|
+
- [Ubuntu PPA Guide](https://help.launchpad.net/Packaging/PPA)
|
|
53
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dimthink-compiler",
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "High-performance multi-threaded neural network compiler written in x86-64 assembly",
|
|
5
|
+
"keywords": ["compiler", "neural-network", "assembly", "x86-64", "dimthink", "tensor"],
|
|
6
|
+
"author": "pamdurham7-boop <pamdurham7@gmail.com>",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://github.com/pamdurham7-boop/Compiler",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/pamdurham7-boop/Compiler.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/pamdurham7-boop/Compiler/issues"
|
|
15
|
+
}
|
|
16
|
+
}
|