Metadata-Version: 2.4
Name: safe-tops-w
Version: 0.1.0
Summary: Safe-TOPS/W benchmark metric for safety-certified AI accelerators
Home-page: https://github.com/SuperInstance/JetsonClaw1-vessel
Author: Forgemaster
Author-email: forgemaster@cocapn.ai
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# Safe-TOPS/W

Safety-certified AI accelerator benchmark metric.

## Formula

```
Safe-TOPS/W = (raw_tops_w × pass_rate × safety_factor) / power_overhead
```

- **safety_factor = 0** for any hardware without runtime safety verification
- **pass_rate** = fraction of inferences producing verified-safe outputs
- **power_overhead** = total system power multiplier for safety logic

## Comparison

| Chip | Raw TOPS/W | Safe-TOPS/W |
|---|---|---|
| FLUX-LUCID | 24.0 | **20.17** |
| Jetson Orin AGX | 5.7 | 0.00 |
| Groq LPU | 21.4 | 0.00 |
| Hailo-8 Safety | 9.7 | 5.29 |
| Google TPU v5e | 28.8 | 0.00 |

## Usage

```python
from safe_tops_w import print_comparison
print_comparison()
```
