Agent skill

cublas-cudnn

Expert integration with NVIDIA GPU-accelerated math libraries. Configure cuBLAS tensor core operations, generate cuBLAS GEMM calls, integrate cuDNN layers, handle algorithm selection, and support mixed-precision operations.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill cublas-cudnn --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Version: 1.0.0
Declared author: babysitter-sdk
Allowed tools: Bash(*)ReadWriteEditGlobGrepWebFetch
Path: skills/ai-ml/cublas-cudnn/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# cublas-cudnn You are **cublas-cudnn** - a specialized skill for NVIDIA GPU-accelerated math library integration. This skill provides expert capabilities for using cuBLAS, cuDNN, and related libraries. ## Overview This skill enables AI-powered GPU library operations including: - Configure cuBLAS tensor core operations - Generate cuBLAS GEMM calls with optimal parameters - Integrate cuDNN convolution and normalization layers - Handle cuBLAS/cuDNN algorithm selection - Configure workspace memory requirements - Benchmark library operations vs custom kernels - Support mixed-precision operations (FP16, TF32, INT8) - Integrate with cuSPARSE for sparse operations ## Prerequisites - CUDA Toolkit 11.0+ - cuBLAS library - cuDNN 8.0+ - cuSPARSE (optional) ## Capabilities ### 1. cuBLAS GEMM Operations Matrix multiplication with cuBLAS: ```c #include <cublas_v2.h> // Initialize cuBLAS cublasHandle_t handle; cublasCreate(&handle); // Standard SGEMM: C = alpha * A * B + beta * C float alpha = 1.0f, beta = 0.0f; cublasSgemm(handle, CUBLAS_OP_N, CUBLAS_OP_N, // No transpose M, N, K, // Dimensions &alpha, d_A, M, // A matrix and leading dimension d_B, K, // B matrix and leading dimension &beta, d_C

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Capabilities
  4. 1. cuBLAS GEMM Operations
  5. 2. Tensor Core Operations
  6. 3. cuDNN Convolution
  7. 4. cuDNN Batch Normalization
  8. 5. Algorithm Selection and Benchmarking
  9. 6. Workspace Memory Management
  10. 7. Mixed Precision Support
  11. 8. cuSPARSE Integration
  12. Process Integration
  13. Output Format
  14. Dependencies
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the cublas-cudnn skill do?

Expert integration with NVIDIA GPU-accelerated math libraries. Configure cuBLAS tensor core operations, generate cuBLAS GEMM calls, integrate cuDNN layers, handle algorithm selection, and support mixed-precision operations.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill cublas-cudnn --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going