isiro-runtime 0.0.1__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.
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: isiro-runtime
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: ISIRO Runtime - BF16 LLM inference efficiency layer. https://isiro.ai
|
|
5
|
+
Project-URL: Homepage, https://isiro.ai
|
|
6
|
+
Project-URL: Documentation, https://isiro.ai/runtime
|
|
7
|
+
Author-email: Isiro AI <kunleo@isiro.ai>
|
|
8
|
+
License: Proprietary
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# isiro-runtime
|
|
13
|
+
|
|
14
|
+
The ISIRO Runtime executes `.TIC` model artifacts with ~30% BF16 memory
|
|
15
|
+
traffic reduction. Bit-exact. No quantization.
|
|
16
|
+
|
|
17
|
+
Full release coming soon at [isiro.ai](https://isiro.ai).
|
|
18
|
+
|
|
19
|
+
## Install
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pip install isiro-runtime
|
|
23
|
+
```
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# isiro-runtime
|
|
2
|
+
|
|
3
|
+
The ISIRO Runtime executes `.TIC` model artifacts with ~30% BF16 memory
|
|
4
|
+
traffic reduction. Bit-exact. No quantization.
|
|
5
|
+
|
|
6
|
+
Full release coming soon at [isiro.ai](https://isiro.ai).
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install isiro-runtime
|
|
12
|
+
```
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "isiro-runtime"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "ISIRO Runtime - BF16 LLM inference efficiency layer. https://isiro.ai"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Proprietary"}
|
|
11
|
+
authors = [{name = "Isiro AI", email = "kunleo@isiro.ai"}]
|
|
12
|
+
classifiers = ["Development Status :: 1 - Planning"]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://isiro.ai"
|
|
16
|
+
Documentation = "https://isiro.ai/runtime"
|