Files
aitbc/docs/beginner/04_miners/5_gpu-setup.md
AITBC System dda703de10 feat: implement v0.2.0 release features - agent-first evolution
 v0.2 Release Preparation:
- Update version to 0.2.0 in pyproject.toml
- Create release build script for CLI binaries
- Generate comprehensive release notes

 OpenClaw DAO Governance:
- Implement complete on-chain voting system
- Create DAO smart contract with Governor framework
- Add comprehensive CLI commands for DAO operations
- Support for multiple proposal types and voting mechanisms

 GPU Acceleration CI:
- Complete GPU benchmark CI workflow
- Comprehensive performance testing suite
- Automated benchmark reports and comparison
- GPU optimization monitoring and alerts

 Agent SDK Documentation:
- Complete SDK documentation with examples
- Computing agent and oracle agent examples
- Comprehensive API reference and guides
- Security best practices and deployment guides

 Production Security Audit:
- Comprehensive security audit framework
- Detailed security assessment (72.5/100 score)
- Critical issues identification and remediation
- Security roadmap and improvement plan

 Mobile Wallet & One-Click Miner:
- Complete mobile wallet architecture design
- One-click miner implementation plan
- Cross-platform integration strategy
- Security and user experience considerations

 Documentation Updates:
- Add roadmap badge to README
- Update project status and achievements
- Comprehensive feature documentation
- Production readiness indicators

🚀 Ready for v0.2.0 release with agent-first architecture
2026-03-18 20:17:23 +01:00

1.6 KiB

GPU Setup & Configuration

Configure and optimize your GPU setup for mining.

Prerequisites

Driver Installation

# Ubuntu/Debian
sudo apt install nvidia-driver-535

# Verify installation
nvidia-smi

CUDA Installation

# Download CUDA from NVIDIA
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.1-1_all.deb
sudo dpkg -i cuda-keyring_1.1-1_all.deb
sudo apt-get update
sudo apt-get install cuda-toolkit-12-3

Configuration

Miner Config

Create ~/.aitbc/miner.yaml:

gpu:
  type: v100
  count: 1
  cuda_devices: 0
  
performance:
  max_memory_percent: 90
  max_gpu_temp: 80
  power_limit: 250
  
jobs:
  max_concurrent: 4
  timeout_grace: 300

Environment Variables

export CUDA_VISIBLE_DEVICES=0
export NVIDIA_VISIBLE_DEVICES=all
export AITBC_GPU_MEMORY_LIMIT=0.9

Optimization

Memory Settings

performance:
  tensor_cores: true
  fp16: true  # Use half precision
  max_memory_percent: 90

Thermal Management

thermal:
  target_temp: 70
  max_temp: 85
  fan_curve:
    - temp: 50
      fan: 30
    - temp: 70
      fan: 60
    - temp: 85
      fan: 100

Troubleshooting

GPU Not Detected

# Check driver
nvidia-smi

# Check CUDA
nvcc --version

# Restart miner
aitbc miner restart

Temperature Issues

# Monitor temperature
nvidia-smi -l 1

# Check cooling
ipmitool sdr list | grep Temp

Next