惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

A
About on SuperTechFans
G
Google Developers Blog
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
小众软件
小众软件
月光博客
月光博客
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
P
Proofpoint News Feed
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
The Cloudflare Blog
博客园_首页
美团技术团队
大猫的无限游戏
大猫的无限游戏
B
Blog
IT之家
IT之家
Jina AI
Jina AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - albedan/ai-ml-gpu-bench: A suite to benchmark CP...
albedan · 2026-05-16 · via Hacker News - Newest: "AI"

Python uv CUDA XGBoost Ollama Report

Objective

One command → a full GPU/CPU benchmark & an interactive HTML report

You can now measure your consumer GPU and/or CPU performance on typical Artificial Intelligence and Machine Learning workloads in a controlled way, with some pre‑set reference results.

The reproducible benchmarks cover:

  • Ollama LLMs (token latency & throughput on various 3B → 14B parameter models)
  • XGBoost (training & inference on the HIGGS dataset, on 100k → 10M+ rows)

Everything is orchestrated by a single YAML file (ai_bench_suite.yaml) and a runner script (run_suite.py), so you can launch an entire set of tests with one command.

Results are visible:

  • immediately at the end of the benchmark, in a notebook that is automatically produced, with comparison against a handful of reference systems;
  • on a regularly updated Streamlit dashboard, to better interact with a growing number of results: https://ai-ml-gpu-bench.streamlit.app

Quick start

git clone https://github.com/albedan/ai-ml-gpu-bench
cd ai-ml-gpu-bench
uv run run_suite.py

For Ollama benchmarks, make sure Ollama is installed and running at http://localhost:11434. To automatically pull missing Ollama models during the full benchmark:

uv run run_suite.py --autopull

What happens during a run

  1. A unique run_id is generated.
  2. The benchmarks specified in the configuration YAML file are executed.
  3. The results of each test are recorded in two separate CSVs for XGBoost and Ollama (if both are selected).
  4. The Jupyter notebook is executed and exported to HTML; it opens automatically in the browser (the bars with a thick border are those from the just‑completed run).
  5. If you’d like to help grow the reference result base, the two CSVs are encrypted (RSA 4096 bit) and uploaded to Filebin, submitting only technical data (opt-out available).
  6. A daily ingestion process imports new results and publishes them to the Streamlit dashboard. More on the architecture underneath: https://allaboutdata.substack.com/p/benchmarking-ai-and-ml-on-local-cpugpus

What to expect: two examples

Multiple machines benchmarked on Deepseek-R1 14B via Ollama (Streamlit dashboard):

Altair Dashboard Ollama

XGBoost tested on the full HIGGS dataset, both with GPU and CPU (Streamlit dashboard):

Altair Dashboard XGBoost

Official results are regularly updated and published on the Streamlit dashboard: https://ai-ml-gpu-bench.streamlit.app

For convenience, a quick Jupyter notebook is immediately shown at the end of the benchmark.


Get started!

Requirements

Make sure you have installed at least the must‑have components below

Requirement Why it’s needed How to install Required?
Python ≥ 3.13 Runtime for the scripts https://www.python.org/ Must
uv 0.8.x Super‑fast package manager & lock‑file generator https://docs.astral.sh/uv/getting-started/installation/ Must
CUDA ≥ 12.x GPU benchmark (XGBoost + CuPy, Ollama) NVIDIA Driver + https://developer.nvidia.com/cuda-downloads Optional
(only if a GPU is selected in the YAML)
Ollama (running at http://localhost:11434) LLM benchmark via REST API https://ollama.com/download Optional
(only if you want to test LLMs)
Ollama Models Models specified in ai_bench_suite.yaml
(comment models to exclude them, verify installation with ollama list)
https://ollama.com/library Optional
(only if you want to test LLMs)

Environment setup

In a local folder, just clone this repository:

git clone https://github.com/albedan/ai-ml-gpu-bench

Python 3.13.* will be automatically installed (unless already present) via uv.


Configuration: ai_bench_suite.yaml

All benchmark parameters are in this YAML file.

  • System defaults for your machine name and hardware details will be used, unless you manually override any of these three fields.
machine_info:
  machine: "" # Choose your preferred computer name (default: hostname)
  cpu: "" # Please specify your CPU
  gpu: "" # Please specify your GPU
  • Commenting an LLM model entry in the ollama section will exclude it from the benchmark. If possible, leave them all as provided, to help collecting results on a standard set of LLMs.
  • For the active LLMs (i.e., uncommented), you can:
    • Have the benchmark automatically check and if necessary pull them for you, by using the flag --autopull. Consider that it could take a few minutes depending on your connection.
    • Verify manually if they’re available with ollama list and install them with ollama pull [model_name].
  • Every combination listed in rows × gpu (for XGBoost) and models × gpu (for Ollama) is run automatically during the benchmark.

Execution

A single command reads the configuration YAML file and orchestrates the test execution, logging and result visualization.

Simply run:

uv run run_suite.py

The first run may take a bit longer because uv will create the environment and install Python/package dependencies automatically. Ollama has to be already installed for LLM benchmarks. You can automatically pull the models specified in the YAML file just by adding --autopull.

--autopull downloads missing Ollama models, but it does not install or update Ollama itself.

At startup, the Ollama suite checks your installed Ollama version against the latest stable release and prints a warning if an update is recommended. The benchmark continues either way.

Consider also the option --fast for benchmarking only on a subset made of the fastest models.

Common commands

Goal Command Notes
Run the full benchmark suite uv run run_suite.py Default: XGBoost + Ollama
Run only Ollama benchmarks uv run run_suite.py --suite ollama Requires Ollama running at http://localhost:11434
Run only XGBoost benchmarks uv run run_suite.py --suite xgboost Useful if you do not want to run LLM tests
Run a faster Ollama subset uv run run_suite.py --suite ollama --fast Uses only the smaller/faster models from the YAML
Pull missing Ollama models automatically uv run run_suite.py --autopull Downloads models only; it does not install or update Ollama
Skip encrypted result upload uv run run_suite.py --no-upload-results Keeps all result files local

Privacy

📦 Detail
Result sharing If enabled, CSV results are encrypted with a public/private key scheme and uploaded to Filebin.
Uploaded data Only technical benchmark data is submitted. No prompts, model outputs, datasets, notebooks, or raw system files are uploaded.
Opt‑out Use --no-upload-results to skip encryption and upload entirely.

Output

  • CSV: result files xgb.csv and ollama.csv are written, one row per benchmark, with metrics and basic machine metadata.
  • Notebook (bench_results_analysis_altair.ipynb): executed and opened automatically in the browser. It lets you explore the newly obtained results and compare them with reference benchmarks.

❓ Q&A

Q A
Can I run just a subset of the benchmark? Sure! Just edit the file ai_bench_suite.yaml, for instance by commenting LLMs you don't want to try, or to run GPU or CPU only.
I don't have a GPU. Is it for me as well? Yes, you can run the benchmark as it is (it will automatically skip the GPU benchmarks).
Can I run the benchmark on an AMD GPU? 🟨 Partially, Ollama will leverage the GPU, while XGBoost will (likely) run on CPU only.
I have an Nvidia GPU, but XGBoost runs on CPU only ℹ️ Please verify the installation of CUDA toolkit by running nvidia-smi and nvcc -V in a terminal. The first verifies the existence of an Nvidia GPU, the second shows the running CUDA toolkit.
Can I run the bench on an old machine (10+ years)? Yes you can! I suggest to edit ai_bench_suite.yaml to include only smaller LLMs (phi3:3.8b and qwen3:4b). The benchmark was tested on a 15 years old Intel i5-560M and 8GB of RAM.
I am experiencing issues when downloading the sample dataset ℹ️ Please verify the system certificates. If you do not have Python 3.13 as system interpreter (i.e., it was installed automatically via uv), uv add pip-system-certs can solve the problem.
I have another problem Please open an issue here on Github.

🔚 Thanks for testing!

If you find an issue or have an idea, open an Issue – or, even better, a Pull Request!
Whenever possible, please keep result sharing enabled to help grow the references! 🚀

Happy benchmarking and experimenting!