Skip to main content

CUDA-accelerated dataflow optimizer for PyTorch with zero-copy pooling and kernel fusion

Project description

๐ŸฆŠ Kitsune

CUDA-Accelerated Dataflow Scheduler for PyTorch

Python 3.10+ PyTorch 2.0+ CUDA 11.0+ License: MIT

A high-performance dataflow scheduler that delivers 100%+ speedup over baseline PyTorch through intelligent CUDA stream management, zero-copy memory pooling, and automatic kernel fusion.

Features โ€ข Quick Start โ€ข Benchmarks โ€ข Architecture โ€ข Installation


๐ŸŽฏ Overview

Kitsune is a production-ready optimization framework designed to accelerate PyTorch neural network training on resource-constrained GPUs (4-8GB VRAM). By leveraging dataflow scheduling principles and advanced CUDA optimizations, Kitsune achieves 2-2.2x speedup with a single-line code change.

Key Highlights

  • ๐Ÿš€ 2x+ Performance Gain: Proven speedup across MLP, CNN, and ResNet architectures
  • ๐Ÿ”Œ Drop-in Integration: Zero-modification replacement for existing PyTorch optimizers
  • ๐Ÿง  Intelligent Scheduling: Dependency-aware execution across multi-stream CUDA pipelines
  • ๐Ÿ’พ Memory Efficient: Zero-allocation hot paths with smart memory reuse
  • โšก Kernel Fusion: Triton-based fusion reduces kernel launch overhead by 40%+
  • ๐Ÿ›ก๏ธ Automatic Fallback: Graceful degradation ensures compatibility

โœจ Features

Core Optimizations

Feature Description Impact
๐Ÿ”„ CUDA Stream Parallelism Executes independent operations concurrently across 4-8 streams 40-60% latency reduction
๐Ÿ’พ Zero-Copy Memory Pooling Intelligent tensor reuse with size-class binning 80% reduction in allocations
โšก Kernel Fusion Triton-based fusion of common operation patterns (LayerNorm, Dropout, etc.) 30-50% fewer kernel launches
๐Ÿ“Š Dataflow Scheduling Dependency-aware scheduling minimizes GPU idle time 20-30% better GPU utilization
๐ŸŽฏ Mixed Precision (AMP) Automatic FP16/BF16 conversion with dynamic loss scaling 1.5-2x throughput boost
๐Ÿ“ˆ CUDA Graph Caching Capture and replay execution graphs for repeated patterns 15-25% overhead reduction

Developer Experience

  • โœ… Single-Line Integration: Wrap your optimizer, no other code changes needed
  • ๐Ÿ” Comprehensive Profiling: Built-in memory and timing analysis
  • ๐Ÿ› ๏ธ Extensive Testing: 95%+ test coverage with benchmark suite
  • ๐Ÿ“ Rich Documentation: Detailed examples and API reference
  • ๐Ÿ”ง Flexible Configuration: Fine-tune streams, memory pools, and fusion patterns

๐Ÿš€ Quick Start

Minimal Example

Transform your existing PyTorch training with a single wrapper:

import torch
import kitsune

# Your existing model and data
model = YourModel().cuda()
dataloader = YourDataLoader()

# โœจ Single-line optimization
optimizer = kitsune.KitsuneOptimizer(
    torch.optim.Adam,
    model.parameters(),
    lr=1e-3
)

# Training loop remains completely unchanged!
for batch in dataloader:
    optimizer.zero_grad()
    loss = model(batch)
    loss.backward()
    optimizer.step()

Advanced Configuration

import kitsune

# Fine-tune for your workload
optimizer = kitsune.KitsuneOptimizer(
    torch.optim.AdamW,
    model.parameters(),
    lr=1e-3,
    # Kitsune-specific options
    num_streams=8,              # More streams for complex models
    enable_fusion=True,         # Kernel fusion (requires Triton)
    enable_amp=True,           # Mixed precision training
    memory_pool_size='2GB',    # Preallocate memory pool
    profile=True               # Enable detailed profiling
)

# Access profiling data
stats = optimizer.get_stats()
print(f"Speedup: {stats.speedup:.2f}x")
print(f"Memory saved: {stats.memory_saved_mb:.1f} MB")

๐Ÿ“ฆ Installation

From Source (Recommended)

# Clone the repository
git clone https://github.com/jeeth-kataria/Kitsune_optimization.git
cd Kitsune_optimization

# Install with core dependencies
pip install -e .

# Install with all optimizations (Linux only - includes Triton for kernel fusion)
pip install -e ".[triton]"

# Install with development tools
pip install -e ".[dev]"

Requirements

Dependency Version Purpose
Python 3.10+ Core runtime
PyTorch 2.0+ Deep learning framework
CUDA Toolkit 11.0+ GPU acceleration
NVIDIA GPU Compute Capability 6.0+ CUDA operations
Triton 2.1+ Kernel fusion (optional, Linux only)

Recommended: NVIDIA RTX 3050/3060 or better (4GB+ VRAM)


๐Ÿ“Š Benchmarks

Performance Results

Measured on NVIDIA RTX 3050 (4GB VRAM) with batch size optimized for each model:

Model Architecture Baseline (ms/iter) Kitsune (ms/iter) Speedup Memory Savings
MLP 3-layer FC (MNIST) 45 22 2.0x โšก 35%
LeNet-5 CNN (MNIST) 38 18 2.1x โšก 42%
ResNet-18 Deep CNN (CIFAR-10) 125 58 2.2x โšก 38%

Optimization Breakdown

Impact of individual optimizations on ResNet-18:

Baseline PyTorch:           125 ms/iter  โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ
+ Stream Parallelism:        92 ms/iter  โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ
+ Memory Pooling:            78 ms/iter  โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ
+ Kernel Fusion:             65 ms/iter  โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ
+ CUDA Graphs:               58 ms/iter  โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ  โ† Final (2.2x)

Reproduction

Run benchmarks yourself:

# Quick benchmark suite
python -m tests.benchmarks.baseline

# Detailed profiling with visualizations
python examples/final_demo.py

# Custom model testing
python -c "
from tests.benchmarks import run_baseline_benchmark, BenchmarkConfig
from tests.benchmarks.models import create_mlp

model = create_mlp()
config = BenchmarkConfig(batch_size=64, num_iterations=100)
result = run_baseline_benchmark(model, config)
print(result.summary())
"

๐Ÿ—๏ธ Architecture

Kitsune implements a dataflow scheduling approach to PyTorch optimization, analyzing computational graphs to maximize parallel execution and minimize memory overhead.

System Design

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚           PyTorch Training Script                  โ”‚
โ”‚  (model, optimizer, loss, backward, step)          โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                      โ”‚
         โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
         โ”‚  Kitsune API Wrapper    โ”‚
         โ”‚   (Drop-in Optimizer)   โ”‚
         โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                      โ”‚
    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
    โ”‚                 โ”‚                 โ”‚
โ”Œโ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚   Graph    โ”‚  โ”‚  Dataflow   โ”‚  โ”‚   Memory     โ”‚
โ”‚  Analyzer  โ”‚  โ”‚  Scheduler  โ”‚  โ”‚   Manager    โ”‚
โ”‚            โ”‚  โ”‚             โ”‚  โ”‚              โ”‚
โ”‚ โ€ข Captures โ”‚  โ”‚ โ€ข Stream    โ”‚  โ”‚ โ€ข Pool Alloc โ”‚
โ”‚   ops      โ”‚  โ”‚   dispatch  โ”‚  โ”‚ โ€ข Size bins  โ”‚
โ”‚ โ€ข Builds   โ”‚  โ”‚ โ€ข Dependencyโ”‚  โ”‚ โ€ข Reuse      โ”‚
โ”‚   DAG      โ”‚  โ”‚   tracking  โ”‚  โ”‚   tracking   โ”‚
โ”‚ โ€ข Finds    โ”‚  โ”‚ โ€ข Priority  โ”‚  โ”‚ โ€ข Zero-copy  โ”‚
โ”‚   fusion   โ”‚  โ”‚   queue     โ”‚  โ”‚   transfers  โ”‚
โ””โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
    โ”‚                โ”‚                โ”‚
    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                     โ”‚
        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
        โ”‚   Fusion Engine         โ”‚
        โ”‚  (Triton Kernels)       โ”‚
        โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                     โ”‚
        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
        โ”‚    CUDA Execution       โ”‚
        โ”‚  โ€ข Multi-stream exec    โ”‚
        โ”‚  โ€ข Event sync           โ”‚
        โ”‚  โ€ข Graph caching        โ”‚
        โ”‚  โ€ข Kernel launch        โ”‚
        โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Core Components

1. Graph Analyzer (kitsune/pytorch/graph_capture.py)

  • Intercepts PyTorch autograd operations
  • Builds directed acyclic graph (DAG) of computation
  • Identifies fusion opportunities (e.g., BatchNorm + ReLU)
  • Detects data dependencies for safe parallelization

2. Dataflow Scheduler (kitsune/core/scheduler.py)

  • Implements critical path scheduling algorithm
  • Assigns operations to CUDA streams based on dependencies
  • Maintains priority queue for ready operations
  • Ensures memory coherency across streams

3. Memory Manager (kitsune/memory/pool.py)

  • Zero-allocation hot path using pre-allocated pools
  • Size-class binning (powers of 2) for efficient reuse
  • Tracks tensor lifetimes to minimize memory footprint
  • Supports pinned memory for fast CPU-GPU transfers

4. Fusion Engine (kitsune/fusion/)

  • Triton-based kernel fusion for common patterns
  • Fuses: LayerNorm, Dropout, Activation functions
  • Reduces kernel launch overhead by 40%+
  • JIT compilation with caching

5. Stream Pool (kitsune/cuda/streams.py)

  • Manages 4-8 CUDA streams for parallel execution
  • Event-based synchronization between streams
  • Automatic stream selection based on workload
  • Fallback to default stream when needed

๐Ÿ’ก Usage Examples

Example 1: Image Classification (MNIST)

import torch
import torch.nn as nn
from torchvision import datasets, transforms
import kitsune

# Define model
class ConvNet(nn.Module):
    def __init__(self):
        super().__init__()
        self.conv1 = nn.Conv2d(1, 32, 3, 1)
        self.conv2 = nn.Conv2d(32, 64, 3, 1)
        self.fc1 = nn.Linear(9216, 128)
        self.fc2 = nn.Linear(128, 10)
    
    def forward(self, x):
        x = torch.relu(self.conv1(x))
        x = torch.relu(self.conv2(x))
        x = torch.max_pool2d(x, 2)
        x = torch.flatten(x, 1)
        x = torch.relu(self.fc1(x))
        return self.fc2(x)

# Setup
model = ConvNet().cuda()
criterion = nn.CrossEntropyLoss()

# โœจ Use Kitsune optimizer
optimizer = kitsune.KitsuneOptimizer(
    torch.optim.Adam, 
    model.parameters(), 
    lr=0.001
)

# Training loop
for epoch in range(10):
    for images, labels in train_loader:
        images, labels = images.cuda(), labels.cuda()
        
        optimizer.zero_grad()
        outputs = model(images)
        loss = criterion(outputs, labels)
        loss.backward()
        optimizer.step()

Example 2: Advanced Configuration

See examples/ directory for complete examples:


๐Ÿงช Development & Testing

Running Tests

# Install development dependencies
pip install -e ".[dev]"

# Run full test suite
pytest tests/ -v

# Run specific test categories
pytest tests/unit/ -v                    # Unit tests
pytest tests/benchmarks/ -m benchmark    # Benchmarks only
pytest tests/integration/ -v             # Integration tests

# Run with coverage report
pytest --cov=kitsune --cov-report=html tests/

Code Quality

# Format code
black kitsune/ tests/
isort kitsune/ tests/

# Type checking
mypy kitsune/

# Linting
flake8 kitsune/

Profiling & Debugging

# Enable detailed profiling
python examples/final_demo.py --profile

# CUDA debugging
CUDA_LAUNCH_BLOCKING=1 python your_script.py

# Memory profiling
python -m kitsune.profiler.memory_tracker examples/basic_usage.py

๐Ÿ—บ๏ธ Project Roadmap

Development timeline for the 8-week optimization competition:

โœ… Version 0.1.0 - Initial Release (January 2026)

  • Week 1: Foundation & Baseline

    • PyTorch profiling infrastructure
    • Baseline benchmark suite (MLP, LeNet, ResNet)
    • Performance metrics collection
  • Week 2: Graph Capture & Analysis

    • Autograd hook implementation
    • DAG construction from operations
    • Dependency analysis
  • Week 3: CUDA Stream Parallelism

    • Multi-stream execution (4-8 streams)
    • Event-based synchronization
    • Parallel kernel dispatch
  • Week 4: Memory Optimization

    • Zero-copy memory pooling
    • Size-class binning
    • Tensor lifetime tracking
  • Week 5: Kernel Fusion + AMP

    • Triton kernel compilation
    • LayerNorm/Dropout fusion
    • Automatic mixed precision integration
  • Week 6: Dataflow Scheduling

    • Dependency-aware task scheduling
    • Multi-stream orchestration
    • Priority queue management
  • Week 7: CUDA Graphs Integration

    • Graph capture for repeated patterns
    • Replay optimization
    • Event-based synchronization
  • Week 8: Production Polish

    • Comprehensive test suite (95%+ coverage)
    • Profiling and metrics tools
    • Performance benchmarks
    • API documentation

๐Ÿš€ Future Roadmap

  • v0.2.0: Advanced Features

    • Multi-GPU support with pipeline parallelism
    • Dynamic batching and adaptive scheduling
    • Extended fusion pattern library
    • Model-specific optimization profiles
  • v0.3.0: Ecosystem Integration

    • Hugging Face Transformers integration
    • TorchScript/ONNX export support
    • Cloud deployment templates
    • Interactive visualization dashboard

๐Ÿค Contributing

Contributions are welcome! This project is part of an ongoing research effort to make GPU training more accessible on resource-constrained hardware.

How to Contribute

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-optimization)
  3. Commit your changes (git commit -m 'Add amazing optimization')
  4. Push to the branch (git push origin feature/amazing-optimization)
  5. Open a Pull Request

Areas for Contribution

  • ๐Ÿ”ฌ Research: Novel scheduling algorithms, fusion patterns
  • ๐Ÿ’ป Implementation: Additional optimizations, platform support
  • ๐Ÿ“š Documentation: Tutorials, examples, API docs
  • ๐Ÿ› Testing: Edge cases, compatibility testing, benchmarks
  • ๐ŸŽจ Tooling: Profiling visualizations, debugging utilities

๐Ÿ“š Documentation

Comprehensive documentation is available with examples, tutorials, and API reference.

View Documentation Locally

# Quick start - just run this!
./run_docs.sh

Then open http://127.0.0.1:8000 in your browser.

What's included:

  • ๐Ÿ  Homepage with features and benchmarks
  • ๐Ÿ“– Getting Started guide
  • ๐Ÿ“š User guides (stream parallelism, fusion, memory management, AMP)
  • ๐Ÿ”ง Complete API reference
  • ๐Ÿ“Š Performance benchmarks
  • ๐Ÿค Contributing guidelines

See RUNNING_DOCS.md for more details.


๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

MIT License

Copyright (c) 2026 Kitsune Team

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
...

๐Ÿ™ Acknowledgments

This project draws inspiration from cutting-edge research and industry practices:

Academic Foundations

  • Dataflow Architectures: Pioneered by Dennis & Misunas (1975)
  • Graph Scheduling: HEFT (Heterogeneous Earliest Finish Time) algorithm
  • Memory Management: Buddy allocation system

Industry Innovations

  • PyTorch: Meta's autograd system and CUDA integration
  • TensorFlow XLA: Graph optimization and fusion
  • NVIDIA CUDA: Stream management and event synchronization
  • Triton: OpenAI's GPU programming language

Technical References


๐Ÿ“ž Contact & Citation

Maintainer: Jeeth Kataria
Project Link: https://github.com/jeeth-kataria/Kitsune_optimization

If you use Kitsune in your research or projects, please consider citing:

@software{kitsune2026,
  title = {Kitsune: CUDA-Accelerated Dataflow Scheduler for PyTorch},
  author = {Jeeth Kataria},
  year = {2026},
  url = {https://github.com/jeeth-kataria/Kitsune_optimization}
}

Made with โค๏ธ for the deep learning community

GitHub Stars GitHub Forks

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

torch_kitsune-0.1.0.tar.gz (79.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

torch_kitsune-0.1.0-py3-none-any.whl (90.3 kB view details)

Uploaded Python 3

File details

Details for the file torch_kitsune-0.1.0.tar.gz.

File metadata

  • Download URL: torch_kitsune-0.1.0.tar.gz
  • Upload date:
  • Size: 79.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.4

File hashes

Hashes for torch_kitsune-0.1.0.tar.gz
Algorithm Hash digest
SHA256 7dd90c7f4c1389d451703a93743d12d53b40fdb9cd4d7ba7461edf9f4f037b72
MD5 2c0500d9ccc0aca82de4c6dabdd5ac95
BLAKE2b-256 6dd4eaaa30982aeb9ae1ba607f56374f6c2bc58dbcaf3491e72a573eecbfea0e

See more details on using hashes here.

File details

Details for the file torch_kitsune-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: torch_kitsune-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 90.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.4

File hashes

Hashes for torch_kitsune-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 492454106270d71c727c8dbae85479c50a9834f6715e1e0c75a1dc6b481109eb
MD5 5d5f131ce8d47ca16a283790cbacb1e4
BLAKE2b-256 d1fff7a093ca31ab0b0b27cb93f2bbcdcb872a36651cfb74cb4cb77952bb3a85

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page