cahlen/kronecker-coefficients
Viewer • Updated • 172k • 127
How to use cahlen/kronecker-cuda with Kernels:
# !pip install kernels
from kernels import get_kernel
kernel = get_kernel("cahlen/kronecker-cuda")Computes Kronecker coefficients g(lambda,mu,nu) for S_n from character tables via GPU-parallel triple-sum.
import torch
from kernels import get_kernel
kernel = get_kernel("cahlen/kronecker-cuda")
result = kronecker.slab(char_table, z_inv, j=0)
nvcc -O3 -arch=sm_90 -o kronecker kronecker/kronecker_gpu.cu -lm
All computation results are open:
@misc{humphreys2026bigcompute,
author = {Humphreys, Cahlen},
title = {bigcompute.science: GPU-Accelerated Computational Mathematics},
year = {2026},
url = {https://bigcompute.science}
}
Human-AI collaborative. Not peer-reviewed. All code and data open.