Python Cpu

Open-source Python projects categorized as Cpu

Top 17 Python Cpu Projects

  1. scalene

    Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python with AI-powered optimization proposals

    Project mention: LLMs and Code Optimization | news.ycombinator.com | 2025-01-06

    This has been a feature of the Scalene Python profiler (https://github.com/plasma-umass/scalene) for some time (at this point, about 1.5 years) - bring your own API key for OpenAI / Azure / Bedrock, also works with Ollama. Optimizing Python code to use NumPy or other similar native libraries can easily yield multiple order of magnitude improvements in real-world settings. We tried it on several of the success stories of Scalene (before the integration with LLMs); see https://github.com/plasma-umass/scalene/issues/58 - and found that it often automatically yielded the same or better optimizations - see https://github.com/plasma-umass/scalene/issues/554. (Full disclosure: I am one of the principal designers of Scalene.)

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. psutil

    Cross-platform lib for process and system monitoring in Python

  4. auto-cpufreq

    Automatic CPU speed & power optimizer for Linux

    Project mention: I replaced myself with a GenAI chatbot using Gemini | news.ycombinator.com | 2025-01-16

    iscover how I built the "auto-cpufreq genAI chatbot" (https://github.com/AdnanHodzic/auto-cpufreq) with Google Cloud’s Vertex AI Agent Builder and Conversational Agents, powered by Gemini as the underlying LLM.

  5. s-tui

    Terminal-based CPU stress and monitoring utility

  6. asitop

    Perf monitoring CLI tool for Apple Silicon

  7. throttled

    Workaround for Intel throttling issues in Linux.

  8. fastsdcpu

    Fast stable diffusion on CPU

    Project mention: Diffusing Images on a Laptop with no GPU | dev.to | 2025-04-21

    FROM ubuntu:24.04 AS base RUN apt update \ && apt-get install -y python3 python3-venv python3-pip python3-wheel ffmpeg git wget nano \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && pip install uv --break-system-packages FROM base AS fastsd ARG FASTSDCPU_VERSION=v1.0.0-beta.200 RUN git clone https://github.com/rupeshs/fastsdcpu /app \ && cd app \ && git checkout -b $FASTSDCPU_VERSION \ && wget https://huggingface.co/rupeshs/FastSD-Flux-GGUF/resolve/main/libstable-diffusion.so?download=true -O libstable-diffusion.so WORKDIR /app SHELL [ "/bin/bash", "-c" ] RUN echo y | bash -x ./install.sh --disable-gui VOLUME /app/models/gguf/ VOLUME /app/lora_models/ VOLUME /app/controlnet_models/ VOLUME /root/.cache/huggingface/hub/ ENV GRADIO_SERVER_NAME=0.0.0.0 EXPOSE 7860 CMD [ "/app/start-webui.sh" ]

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. OpenSeeFace

    Robust realtime face and facial landmark tracking on CPU with Unity integration

  11. yappi

    Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.

  12. py-cpuinfo

    A module for getting CPU info with pure Python

  13. 8bit-cpu

    Schematics & code for my 74LS-based 8-bit MK1 CPU

    Project mention: Build an 8-bit computer from scratch | news.ycombinator.com | 2025-04-04

    It is a rite of passage, as electronics wizards say. I remember at least another good example shared in the wild: https://github.com/vascofazza/8bit-cpu

  14. freqbench

    Comprehensive CPU frequency performance/power benchmark

  15. CuVec

    Unifying Python/C++/CUDA memory: Python buffered array ↔️ `std::vector` ↔️ CUDA managed memory

  16. BMW-IntelOpenVINO-Detection-Inference-API

    This is a repository for a No-Code object detection inference API using the OpenVINO. It's supported on both Windows and Linux Operating systems.

  17. MCE-Ryzen-Decoder

    MCE Ryzen Decoder for AMD 17h (23) family

  18. XNOR-popcount-GEMM-PyTorch-CPU-CUDA

    A PyTorch implemenation of real XNOR-popcount (1-bit op) GEMM Linear PyTorch extension support both CPU and CUDA

  19. relay-cpu

    8 bit relay CPU

    Project mention: LFSR CPU Running Forth | news.ycombinator.com | 2025-06-01

    I have used the same LFSR-PC trick for my relay CPU:

    https://github.com/artemonster/relay-cpu

    Instead of having 24 relays to have a 12bit incrementer (a full adder requires 4 DPDT relays per bit or 2 quad relays) I only have 3 relays for 3 XORs :)

  20. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Python Cpu discussion

Log in or Post with

Python Cpu related posts

  • LFSR CPU Running Forth

    2 projects | news.ycombinator.com | 1 Jun 2025
  • Diffusing Images on a Laptop with no GPU

    1 project | dev.to | 21 Apr 2025
  • 🧠🤖Image generative AI on PC without GPU (free and fast (FastSD CPU))

    1 project | dev.to | 23 Feb 2025
  • I replaced myself with a GenAI chatbot using Gemini

    1 project | news.ycombinator.com | 16 Jan 2025
  • Auto-Cpufreq v2.5.0 Release

    2 projects | news.ycombinator.com | 9 Jan 2025
  • Using Rust to corrode insane Python run-times

    3 projects | news.ycombinator.com | 26 Jul 2024
  • Nvtop: Linux Task Monitor for Nvidia, AMD and Intel GPUs

    10 projects | news.ycombinator.com | 12 Mar 2024
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 20 Jun 2025
    InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now. Learn more →

Index

What are some of the best open-source Cpu projects in Python? This list will help you:

# Project Stars
1 scalene 12,727
2 psutil 10,684
3 auto-cpufreq 6,537
4 s-tui 4,622
5 asitop 3,975
6 throttled 2,776
7 fastsdcpu 1,712
8 OpenSeeFace 1,618
9 yappi 1,589
10 py-cpuinfo 327
11 8bit-cpu 306
12 freqbench 173
13 CuVec 80
14 BMW-IntelOpenVINO-Detection-Inference-API 74
15 MCE-Ryzen-Decoder 26
16 XNOR-popcount-GEMM-PyTorch-CPU-CUDA 21
17 relay-cpu 0

Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that Python is
the 2nd most popular programming language
based on number of references?