├── .github └── workflows │ └── shellcheck.yaml ├── .gitignore ├── LICENSE ├── README.md ├── ai-benchmarks.py ├── example.inventory.py ├── group_data └── all.py └── obench.sh /.github/workflows/shellcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ai-benchmarks/HEAD/.github/workflows/shellcheck.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | inventory.py 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ai-benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ai-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /ai-benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ai-benchmarks/HEAD/ai-benchmarks.py -------------------------------------------------------------------------------- /example.inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ai-benchmarks/HEAD/example.inventory.py -------------------------------------------------------------------------------- /group_data/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ai-benchmarks/HEAD/group_data/all.py -------------------------------------------------------------------------------- /obench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ai-benchmarks/HEAD/obench.sh --------------------------------------------------------------------------------