Dataset Viewer
Auto-converted to Parquet Duplicate
Op_Name
large_stringlengths
3
27
Level_ID
int64
1
3
Task_ID
int64
1
45
Category
large_stringlengths
3
19
Input_Shapes
large_stringlengths
7
68
GitHub_URL
large_stringlengths
86
110
GitHub_Raw_URL
large_stringlengths
85
109
Status
large_stringclasses
3 values
Correct
bool
2 classes
Max_Diff
float64
-1
0
Pallas_Runtime
float64
-1
6.35k
JAX_Native_Runtime
float64
-1
0.25
JAX_XLA_Compiled_Runtime
float64
-1
0.25
Pallas_Speedup_Native
float64
0
0
Pallas_Speedup_Compiled
float64
0
0
Pallas_Code
large_stringlengths
0
2.23k
Pallas_Code_Original
large_stringlengths
0
2.23k
JAX_Code_Module
large_stringlengths
71
709
JAX_Code_Functional
large_stringlengths
71
709
Diff
large_stringlengths
227
1.06k
Jaxpr_IR
large_stringlengths
707
2.57k
StableHLO_IR
large_stringlengths
3.02k
8.28k
Error
large_stringclasses
4 values
Target_Hardware
large_stringclasses
1 value
Framework
large_stringclasses
1 value
Backend
large_stringclasses
1 value
JAX_Version
large_stringclasses
1 value
Triton_Version
large_stringclasses
1 value
Kernel_Name
large_stringlengths
13
37
Original_Source
large_stringlengths
0
2.23k
Fixed_Source
large_stringlengths
0
2.23k
relu
1
1
activation
[[4096, 4096]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/relu.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/relu.py
pass
true
0
104.7967
0.2017
0.2017
0.0019
0.0019
"""Level 1: Elementwise ReLU via Pallas. Demonstrates: basic pallas_call, grid, BlockSpec, program_id. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/relu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _relu_kernel(x...
"""Level 1: Elementwise ReLU via Pallas. Demonstrates: basic pallas_call, grid, BlockSpec, program_id. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/relu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _relu_kernel(x...
@jax.jit def jax_relu(x: jax.Array) -> jax.Array: return jnp.maximum(x, 0)
@jax.jit def jax_relu(x: jax.Array) -> jax.Array: return jnp.maximum(x, 0)
--- a/relu.py +++ b/relu.py @@ -18,16 +18,21 @@ def pallas_relu(x: jax.Array) -> jax.Array: - n = x.shape[0] - block_size = min(1024, n) - grid_size = n // block_size - + bm = min(128, x.shape[0]) + bn = min(128, x.shape[1]) if x.ndim > 1 else x.shape[0] + grid = (x.shape[0] // bm, x.shape[1] // ...
{ lambda ; a:f32[4096,4096]. let b:f32[4096,4096] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(32, 32), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=128), Blocked(block_size=128))), BlockMapping(block_shape=(Blocked(block_s...
module @jit_pallas_relu attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<4096x4096xf32>) -> (tensor<4096x4096xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {debu...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
relu_gpu_fixed
"""Level 1: Elementwise ReLU via Pallas. Demonstrates: basic pallas_call, grid, BlockSpec, program_id. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/relu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _relu_kernel(x...
"""Level 1: Elementwise ReLU via Pallas. Demonstrates: basic pallas_call, grid, BlockSpec, program_id. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/relu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _relu_kernel(x...
gelu
1
2
activation
[[4096, 4096]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/gelu.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/gelu.py
pass
true
0.000001
814.1361
0.2041
0.2041
0.0003
0.0003
"""Level 1: Elementwise GELU via Pallas. Demonstrates: transcendental functions (tanh, erf) inside kernels. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/gelu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _gelu_ker...
"""Level 1: Elementwise GELU via Pallas. Demonstrates: transcendental functions (tanh, erf) inside kernels. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/gelu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _gelu_ker...
@jax.jit def jax_gelu(x: jax.Array) -> jax.Array: return jax.nn.gelu(x)
@jax.jit def jax_gelu(x: jax.Array) -> jax.Array: return jax.nn.gelu(x)
--- a/gelu.py +++ b/gelu.py @@ -20,16 +20,21 @@ def pallas_gelu(x: jax.Array) -> jax.Array: - n = x.shape[0] - block_size = min(1024, n) - grid_size = n // block_size - + bm = min(128, x.shape[0]) + bn = min(128, x.shape[1]) if x.ndim > 1 else x.shape[0] + grid = (x.shape[0] // bm, x.shape[1] // ...
{ lambda ; a:f32[4096,4096]. let b:f32[4096,4096] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(32, 32), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=128), Blocked(block_size=128))), BlockMapping(block_shape=(Blocked(block_s...
module @jit_pallas_gelu attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<4096x4096xf32>) -> (tensor<4096x4096xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {debu...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
gelu_gpu_fixed
"""Level 1: Elementwise GELU via Pallas. Demonstrates: transcendental functions (tanh, erf) inside kernels. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/gelu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _gelu_ker...
"""Level 1: Elementwise GELU via Pallas. Demonstrates: transcendental functions (tanh, erf) inside kernels. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/gelu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _gelu_ker...
silu
1
3
activation
[[4096, 4096]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/silu.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/silu.py
pass
true
0
334.4029
0.1975
0.1975
0.0006
0.0006
"""Level 1: SiLU (Swish) activation via Pallas. Provenance: jax.nn.silu / openxla/tokamax gated_linear_unit uses SiLU gate """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/silu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl ...
"""Level 1: SiLU (Swish) activation via Pallas. Provenance: jax.nn.silu / openxla/tokamax gated_linear_unit uses SiLU gate """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/silu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl ...
@jax.jit def jax_silu(x: jax.Array) -> jax.Array: return jax.nn.silu(x)
@jax.jit def jax_silu(x: jax.Array) -> jax.Array: return jax.nn.silu(x)
--- a/silu.py +++ b/silu.py @@ -18,16 +18,21 @@ def pallas_silu(x: jax.Array) -> jax.Array: - n = x.shape[0] - block_size = min(1024, n) - grid_size = n // block_size - + bm = min(128, x.shape[0]) + bn = min(128, x.shape[1]) if x.ndim > 1 else x.shape[0] + grid = (x.shape[0] // bm, x.shape[1] // ...
{ lambda ; a:f32[4096,4096]. let b:f32[4096,4096] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(32, 32), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=128), Blocked(block_size=128))), BlockMapping(block_shape=(Blocked(block_s...
module @jit_pallas_silu attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<4096x4096xf32>) -> (tensor<4096x4096xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {debu...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
silu_gpu_fixed
"""Level 1: SiLU (Swish) activation via Pallas. Provenance: jax.nn.silu / openxla/tokamax gated_linear_unit uses SiLU gate """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/silu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl ...
"""Level 1: SiLU (Swish) activation via Pallas. Provenance: jax.nn.silu / openxla/tokamax gated_linear_unit uses SiLU gate """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/silu", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl ...
sigmoid
1
4
activation
[[4096, 4096]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/sigmoid.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/sigmoid.py
pass
true
0
283.8244
0.2116
0.2116
0.0007
0.0007
"""Level 1: Elementwise sigmoid via Pallas. Provenance: jax.nn.sigmoid, used in loss functions and gating """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/sigmoid", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _sigmoid...
"""Level 1: Elementwise sigmoid via Pallas. Provenance: jax.nn.sigmoid, used in loss functions and gating """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/sigmoid", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _sigmoid...
@jax.jit def jax_sigmoid(x: jax.Array) -> jax.Array: return jax.nn.sigmoid(x)
@jax.jit def jax_sigmoid(x: jax.Array) -> jax.Array: return jax.nn.sigmoid(x)
--- a/sigmoid.py +++ b/sigmoid.py @@ -18,16 +18,21 @@ def pallas_sigmoid(x: jax.Array) -> jax.Array: - n = x.shape[0] - block_size = min(1024, n) - grid_size = n // block_size - + bm = min(128, x.shape[0]) + bn = min(128, x.shape[1]) if x.ndim > 1 else x.shape[0] + grid = (x.shape[0] // bm, x.sha...
{ lambda ; a:f32[4096,4096]. let b:f32[4096,4096] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(32, 32), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=128), Blocked(block_size=128))), BlockMapping(block_shape=(Blocked(block_s...
module @jit_pallas_sigmoid attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<4096x4096xf32>) -> (tensor<4096x4096xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {d...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
sigmoid_gpu_fixed
"""Level 1: Elementwise sigmoid via Pallas. Provenance: jax.nn.sigmoid, used in loss functions and gating """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/sigmoid", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _sigmoid...
"""Level 1: Elementwise sigmoid via Pallas. Provenance: jax.nn.sigmoid, used in loss functions and gating """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/sigmoid", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _sigmoid...
tanh
1
5
activation
[[4096, 4096]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/tanh.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/tanh.py
pass
true
0
252.8305
0.2102
0.2102
0.0008
0.0008
@jax.jit def jax_tanh(x: jax.Array) -> jax.Array: return jnp.tanh(x)
@jax.jit def jax_tanh(x: jax.Array) -> jax.Array: return jnp.tanh(x)
null
{ lambda ; a:f32[4096,4096]. let b:f32[4096,4096] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(32, 32), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=128), Blocked(block_size=128))), BlockMapping(block_shape=(Blocked(block_s...
module @jit_pallas_tanh attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<4096x4096xf32>) -> (tensor<4096x4096xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {debu...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
tanh_gpu_fixed
layernorm
1
6
normalization
[[2048, 1024]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/layernorm.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/layernorm.py
pass
true
0.000001
348.5668
0.144
0.144
0.0004
0.0004
"""Level 1: Layer normalization via Pallas. Demonstrates: mean/variance reduction, epsilon stability, row-parallel tiling. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/layernorm", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas a...
"""Level 1: Layer normalization via Pallas. Demonstrates: mean/variance reduction, epsilon stability, row-parallel tiling. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/layernorm", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas a...
@jax.jit def jax_layernorm(x: jax.Array) -> jax.Array: mean = jnp.mean(x, axis=-1, keepdims=True) var = jnp.var(x, axis=-1, keepdims=True) return (x - mean) / jnp.sqrt(var + 1e-5)
@jax.jit def jax_layernorm(x: jax.Array) -> jax.Array: mean = jnp.mean(x, axis=-1, keepdims=True) var = jnp.var(x, axis=-1, keepdims=True) return (x - mean) / jnp.sqrt(var + 1e-5)
--- a/layernorm.py +++ b/layernorm.py @@ -23,6 +23,8 @@ n_rows = x.shape[0] block_rows = min(128, n_rows) n_cols = x.shape[1] + while block_rows * n_cols > 16384 and block_rows > 1: + block_rows //= 2 grid_size = n_rows // block_rows return pl.pallas_call(
{ lambda ; a:f32[2048,1024]. let b:f32[2048,1024] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(128,), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=16), Blocked(block_size=1024))), BlockMapping(block_shape=(Blocked(block_siz...
module @jit_pallas_layernorm attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<2048x1024xf32>) -> (tensor<2048x1024xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = ...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
layernorm_gpu_fixed
"""Level 1: Layer normalization via Pallas. Demonstrates: mean/variance reduction, epsilon stability, row-parallel tiling. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/layernorm", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas a...
"""Level 1: Layer normalization via Pallas. Demonstrates: mean/variance reduction, epsilon stability, row-parallel tiling. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/layernorm", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas a...
rmsnorm
1
7
normalization
[[2048, 1024]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/rmsnorm.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/rmsnorm.py
pass
true
0.000001
170.3765
0.0798
0.0798
0.0005
0.0005
"""Level 1: RMS normalization via Pallas. Demonstrates: squared-mean reduction, rsqrt pattern. Inspired by pallas-forge's RMSNorm kernel (3.44x over XLA). """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/rmsnorm", __doc__) import jax import jax.numpy as jnp from ja...
"""Level 1: RMS normalization via Pallas. Demonstrates: squared-mean reduction, rsqrt pattern. Inspired by pallas-forge's RMSNorm kernel (3.44x over XLA). """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/rmsnorm", __doc__) import jax import jax.numpy as jnp from ja...
@jax.jit def jax_rmsnorm(x: jax.Array) -> jax.Array: ms = jnp.mean(x ** 2, axis=-1, keepdims=True) return x / jnp.sqrt(ms + 1e-5)
@jax.jit def jax_rmsnorm(x: jax.Array) -> jax.Array: ms = jnp.mean(x ** 2, axis=-1, keepdims=True) return x / jnp.sqrt(ms + 1e-5)
--- a/rmsnorm.py +++ b/rmsnorm.py @@ -23,6 +23,8 @@ n_rows = x.shape[0] block_rows = min(128, n_rows) n_cols = x.shape[1] + while block_rows * n_cols > 16384 and block_rows > 1: + block_rows //= 2 grid_size = n_rows // block_rows return pl.pallas_call(
{ lambda ; a:f32[2048,1024]. let b:f32[2048,1024] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(128,), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=16), Blocked(block_size=1024))), BlockMapping(block_shape=(Blocked(block_siz...
module @jit_pallas_rmsnorm attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<2048x1024xf32>) -> (tensor<2048x1024xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {d...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
rmsnorm_gpu_fixed
"""Level 1: RMS normalization via Pallas. Demonstrates: squared-mean reduction, rsqrt pattern. Inspired by pallas-forge's RMSNorm kernel (3.44x over XLA). """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/rmsnorm", __doc__) import jax import jax.numpy as jnp from ja...
"""Level 1: RMS normalization via Pallas. Demonstrates: squared-mean reduction, rsqrt pattern. Inspired by pallas-forge's RMSNorm kernel (3.44x over XLA). """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/rmsnorm", __doc__) import jax import jax.numpy as jnp from ja...
matmul
1
8
matmul
[[1024, 1024], [1024, 1024]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/matmul.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/matmul.py
pass
true
0
699.1011
0.1664
0.1664
0.0002
0.0002
"""Level 1: Tiled matrix multiplication via Pallas. Demonstrates: 2D grid, BlockSpec with K-dimension accumulation, multi-block tiling pattern from the Pallas quickstart. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/matmul", __doc__) import jax import jax.numpy...
"""Level 1: Tiled matrix multiplication via Pallas. Demonstrates: 2D grid, BlockSpec with K-dimension accumulation, multi-block tiling pattern from the Pallas quickstart. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/matmul", __doc__) import jax import jax.numpy...
@jax.jit def jax_matmul(x: jax.Array, y: jax.Array) -> jax.Array: return x @ y
@jax.jit def jax_matmul(x: jax.Array, y: jax.Array) -> jax.Array: return x @ y
--- a/matmul.py +++ b/matmul.py @@ -20,8 +20,8 @@ def pallas_matmul(x: jax.Array, y: jax.Array) -> jax.Array: m, k = x.shape _, n = y.shape - bm = min(512, m) - bn = min(512, n) + bm = min(16, m) + bn = min(16, n) grid = (m // bm, n // bn) return pl.pallas_call(
{ lambda ; a:f32[1024,1024] b:f32[1024,1024]. let c:f32[1024,1024] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(64, 64), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=16), Blocked(block_size=1024))), BlockMapping(block_shape...
module @jit_pallas_matmul attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<1024x1024xf32>, %arg1: tensor<1024x1024xf32>) -> (tensor<1024x1024xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0, %arg1) {backend_c...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
matmul_gpu_fixed
"""Level 1: Tiled matrix multiplication via Pallas. Demonstrates: 2D grid, BlockSpec with K-dimension accumulation, multi-block tiling pattern from the Pallas quickstart. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/matmul", __doc__) import jax import jax.numpy...
"""Level 1: Tiled matrix multiplication via Pallas. Demonstrates: 2D grid, BlockSpec with K-dimension accumulation, multi-block tiling pattern from the Pallas quickstart. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/matmul", __doc__) import jax import jax.numpy...
batched_matmul
1
9
matmul
[[8, 256, 256], [8, 256, 256]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/batched_matmul.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/batched_matmul.py
pass
true
0
241.3267
0.1036
0.1036
0.0004
0.0004
"""Level 1: Batched matrix multiplication via Pallas. Provenance: jnp.matmul with batch dims, used in multi-head attention """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/batched_matmul", __doc__) import jax import jax.numpy as jnp from jax.experimental import pal...
"""Level 1: Batched matrix multiplication via Pallas. Provenance: jnp.matmul with batch dims, used in multi-head attention """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/batched_matmul", __doc__) import jax import jax.numpy as jnp from jax.experimental import pal...
@jax.jit def jax_batched_matmul(x: jax.Array, y: jax.Array) -> jax.Array: return x @ y
@jax.jit def jax_batched_matmul(x: jax.Array, y: jax.Array) -> jax.Array: return x @ y
--- a/batched_matmul.py +++ b/batched_matmul.py @@ -20,15 +20,17 @@ batch, m, k = x.shape _, _, n = y.shape + bm_ = min(32, m) + bn_ = min(32, n) return pl.pallas_call( _batched_matmul_kernel, out_shape=jax.ShapeDtypeStruct((batch, m, n), x.dtype), - grid=(batch,), + ...
{ lambda ; a:f32[8,256,256] b:f32[8,256,256]. let c:f32[8,256,256] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(8, 8, 8), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=1), Blocked(block_size=32), Blocked(block_size=256))), B...
module @jit_pallas_batched_matmul attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<8x256x256xf32>, %arg1: tensor<8x256x256xf32>) -> (tensor<8x256x256xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0, %arg1) {b...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
batched_matmul_gpu_fixed
"""Level 1: Batched matrix multiplication via Pallas. Provenance: jnp.matmul with batch dims, used in multi-head attention """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/batched_matmul", __doc__) import jax import jax.numpy as jnp from jax.experimental import pal...
"""Level 1: Batched matrix multiplication via Pallas. Provenance: jnp.matmul with batch dims, used in multi-head attention """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/batched_matmul", __doc__) import jax import jax.numpy as jnp from jax.experimental import pal...
outer_product
1
10
matmul
[[1024], [1024]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/outer_product.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/outer_product.py
pass
true
0
5,730.2626
0.0945
0.0945
0
0
"""Level 1: Outer product via Pallas. Provenance: jnp.outer, rank-1 update pattern used in Evoformer/AlphaFold """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/outer_product", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl d...
"""Level 1: Outer product via Pallas. Provenance: jnp.outer, rank-1 update pattern used in Evoformer/AlphaFold """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/outer_product", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl d...
@jax.jit def jax_outer_product(x: jax.Array, y: jax.Array) -> jax.Array: return jnp.outer(x, y)
@jax.jit def jax_outer_product(x: jax.Array, y: jax.Array) -> jax.Array: return jnp.outer(x, y)
null
{ lambda ; a:f32[1024] b:f32[1024]. let c:f32[1024,1024] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(1,), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=1024),)), BlockMapping(block_shape=(Blocked(block_size=1024),)), BlockM...
module @jit_pallas_outer_product attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<1024xf32>, %arg1: tensor<1024xf32>) -> (tensor<1024x1024xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0, %arg1) {backend_conf...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
outer_product_gpu_fixed
"""Level 1: Outer product via Pallas. Provenance: jnp.outer, rank-1 update pattern used in Evoformer/AlphaFold """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/outer_product", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl d...
"""Level 1: Outer product via Pallas. Provenance: jnp.outer, rank-1 update pattern used in Evoformer/AlphaFold """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/outer_product", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl d...
reduce_sum
1
11
reduce
[[4096, 2048]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/reduce_sum.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/reduce_sum.py
pass
true
0.000019
94.2345
0.1039
0.1039
0.0011
0.0011
"""Level 1: Row-wise sum reduction via Pallas. Demonstrates: reduction along an axis, row-parallel BlockSpec. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_sum", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _...
"""Level 1: Row-wise sum reduction via Pallas. Demonstrates: reduction along an axis, row-parallel BlockSpec. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_sum", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _...
@jax.jit def jax_reduce_sum(x: jax.Array) -> jax.Array: return jnp.sum(x, axis=-1)
@jax.jit def jax_reduce_sum(x: jax.Array) -> jax.Array: return jnp.sum(x, axis=-1)
--- a/reduce_sum.py +++ b/reduce_sum.py @@ -20,6 +20,8 @@ n_rows = x.shape[0] n_cols = x.shape[1] block_rows = min(256, n_rows) + while block_rows * n_cols > 16384 and block_rows > 1: + block_rows //= 2 grid_size = n_rows // block_rows return pl.pallas_call(
{ lambda ; a:f32[4096,2048]. let b:f32[4096] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(512,), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=8), Blocked(block_size=2048))), BlockMapping(block_shape=(Blocked(block_size=8),)...
module @jit_pallas_reduce_sum attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<4096x2048xf32>) -> (tensor<4096xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {deb...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
reduce_sum_gpu_fixed
"""Level 1: Row-wise sum reduction via Pallas. Demonstrates: reduction along an axis, row-parallel BlockSpec. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_sum", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _...
"""Level 1: Row-wise sum reduction via Pallas. Demonstrates: reduction along an axis, row-parallel BlockSpec. """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_sum", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def _...
reduce_max
1
12
reduce
[[4096, 2048]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/reduce_max.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/reduce_max.py
pass
true
0
95.0869
0.127
0.127
0.0013
0.0013
"""Level 1: Row-wise max reduction via Pallas. Provenance: jnp.max reduction, used in softmax numerics and argmax patterns """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_max", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas...
"""Level 1: Row-wise max reduction via Pallas. Provenance: jnp.max reduction, used in softmax numerics and argmax patterns """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_max", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas...
@jax.jit def jax_reduce_max(x: jax.Array) -> jax.Array: return jnp.max(x, axis=-1)
@jax.jit def jax_reduce_max(x: jax.Array) -> jax.Array: return jnp.max(x, axis=-1)
--- a/reduce_max.py +++ b/reduce_max.py @@ -21,6 +21,8 @@ n_rows = x.shape[0] n_cols = x.shape[1] block_rows = min(256, n_rows) + while block_rows * n_cols > 16384 and block_rows > 1: + block_rows //= 2 grid_size = n_rows // block_rows return pl.pallas_call(
{ lambda ; a:f32[4096,2048]. let b:f32[4096] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(512,), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=8), Blocked(block_size=2048))), BlockMapping(block_shape=(Blocked(block_size=8),)...
module @jit_pallas_reduce_max attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<4096x2048xf32>) -> (tensor<4096xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {deb...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
reduce_max_gpu_fixed
"""Level 1: Row-wise max reduction via Pallas. Provenance: jnp.max reduction, used in softmax numerics and argmax patterns """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_max", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas...
"""Level 1: Row-wise max reduction via Pallas. Provenance: jnp.max reduction, used in softmax numerics and argmax patterns """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_max", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas...
reduce_mean
1
13
reduce
[[4096, 2048]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/reduce_mean.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/reduce_mean.py
pass
true
0
97.0746
0.1352
0.1352
0.0014
0.0014
"""Level 1: Row-wise mean reduction via Pallas. Provenance: jnp.mean reduction, used in normalization layers """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_mean", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def ...
"""Level 1: Row-wise mean reduction via Pallas. Provenance: jnp.mean reduction, used in normalization layers """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_mean", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def ...
@jax.jit def jax_reduce_mean(x: jax.Array) -> jax.Array: return jnp.mean(x, axis=-1)
@jax.jit def jax_reduce_mean(x: jax.Array) -> jax.Array: return jnp.mean(x, axis=-1)
--- a/reduce_mean.py +++ b/reduce_mean.py @@ -21,6 +21,8 @@ n_rows = x.shape[0] n_cols = x.shape[1] block_rows = min(256, n_rows) + while block_rows * n_cols > 16384 and block_rows > 1: + block_rows //= 2 grid_size = n_rows // block_rows return pl.pallas_call(
{ lambda ; a:f32[4096,2048]. let b:f32[4096] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(512,), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=8), Blocked(block_size=2048))), BlockMapping(block_shape=(Blocked(block_size=8),)...
module @jit_pallas_reduce_mean attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<4096x2048xf32>) -> (tensor<4096xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {de...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
reduce_mean_gpu_fixed
"""Level 1: Row-wise mean reduction via Pallas. Provenance: jnp.mean reduction, used in normalization layers """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_mean", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def ...
"""Level 1: Row-wise mean reduction via Pallas. Provenance: jnp.mean reduction, used in normalization layers """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/reduce_mean", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas as pl def ...
softmax
1
14
softmax
[[2048, 2048]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/softmax.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/softmax.py
pass
true
0
390.0773
0.1184
0.1184
0.0003
0.0003
"""Level 1: Row-wise softmax via Pallas. Demonstrates: reductions within a block, numerical stability (max subtraction), multi-pass pattern (max -> subtract -> exp -> sum -> divide). """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/softmax", __doc__) import jax im...
"""Level 1: Row-wise softmax via Pallas. Demonstrates: reductions within a block, numerical stability (max subtraction), multi-pass pattern (max -> subtract -> exp -> sum -> divide). """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/softmax", __doc__) import jax im...
@jax.jit def jax_softmax(x: jax.Array) -> jax.Array: return jax.nn.softmax(x, axis=-1)
@jax.jit def jax_softmax(x: jax.Array) -> jax.Array: return jax.nn.softmax(x, axis=-1)
--- a/softmax.py +++ b/softmax.py @@ -27,6 +27,8 @@ n_rows = x.shape[0] block_rows = min(128, n_rows) n_cols = x.shape[1] + while block_rows * n_cols > 16384 and block_rows > 1: + block_rows //= 2 grid_size = n_rows // block_rows return pl.pallas_call(
{ lambda ; a:f32[2048,2048]. let b:f32[2048,2048] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(256,), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=8), Blocked(block_size=2048))), BlockMapping(block_shape=(Blocked(block_size...
module @jit_pallas_softmax attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<2048x2048xf32>) -> (tensor<2048x2048xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {d...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
softmax_gpu_fixed
"""Level 1: Row-wise softmax via Pallas. Demonstrates: reductions within a block, numerical stability (max subtraction), multi-pass pattern (max -> subtract -> exp -> sum -> divide). """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/softmax", __doc__) import jax im...
"""Level 1: Row-wise softmax via Pallas. Demonstrates: reductions within a block, numerical stability (max subtraction), multi-pass pattern (max -> subtract -> exp -> sum -> divide). """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/softmax", __doc__) import jax im...
log_softmax
1
15
softmax
[[2048, 2048]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/log_softmax.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/log_softmax.py
pass
true
0.000001
312.4499
0.1174
0.1174
0.0004
0.0004
"""Level 1: Row-wise log-softmax via Pallas. Provenance: jax.nn.log_softmax, critical for cross-entropy loss computation """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/log_softmax", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas ...
"""Level 1: Row-wise log-softmax via Pallas. Provenance: jax.nn.log_softmax, critical for cross-entropy loss computation """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/log_softmax", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas ...
@jax.jit def jax_log_softmax(x: jax.Array) -> jax.Array: return jax.nn.log_softmax(x, axis=-1)
@jax.jit def jax_log_softmax(x: jax.Array) -> jax.Array: return jax.nn.log_softmax(x, axis=-1)
--- a/log_softmax.py +++ b/log_softmax.py @@ -25,6 +25,8 @@ n_rows = x.shape[0] n_cols = x.shape[1] block_rows = min(128, n_rows) + while block_rows * n_cols > 16384 and block_rows > 1: + block_rows //= 2 grid_size = n_rows // block_rows return pl.pallas_call(
{ lambda ; a:f32[2048,2048]. let b:f32[2048,2048] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(256,), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=8), Blocked(block_size=2048))), BlockMapping(block_shape=(Blocked(block_size...
module @jit_pallas_log_softmax attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<2048x2048xf32>) -> (tensor<2048x2048xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config ...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
log_softmax_gpu_fixed
"""Level 1: Row-wise log-softmax via Pallas. Provenance: jax.nn.log_softmax, critical for cross-entropy loss computation """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/log_softmax", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas ...
"""Level 1: Row-wise log-softmax via Pallas. Provenance: jax.nn.log_softmax, critical for cross-entropy loss computation """ from pallasbench.provenance import describe_task as _describe_task __doc__ = _describe_task("L1/log_softmax", __doc__) import jax import jax.numpy as jnp from jax.experimental import pallas ...
exp
1
16
elementwise
[[4096, 4096]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/exp.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/exp.py
pass
true
0
179.5751
0.2054
0.2054
0.0011
0.0011
@jax.jit def jax_exp(x: jax.Array) -> jax.Array: return jnp.exp(x)
@jax.jit def jax_exp(x: jax.Array) -> jax.Array: return jnp.exp(x)
null
{ lambda ; a:f32[4096,4096]. let b:f32[4096,4096] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(32, 32), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=128), Blocked(block_size=128))), BlockMapping(block_shape=(Blocked(block_s...
module @jit_pallas_exp attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<4096x4096xf32>) -> (tensor<4096x4096xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {debug...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
exp_gpu_fixed
log
1
17
elementwise
[[4096, 4096]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/log.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/log.py
pass
true
0
430.9604
0.2047
0.2047
0.0005
0.0005
@jax.jit def jax_log(x: jax.Array) -> jax.Array: return jnp.log(x + 1e-7)
@jax.jit def jax_log(x: jax.Array) -> jax.Array: return jnp.log(x + 1e-7)
null
{ lambda ; a:f32[4096,4096]. let b:f32[4096,4096] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(32, 32), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=128), Blocked(block_size=128))), BlockMapping(block_shape=(Blocked(block_s...
module @jit_pallas_log attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<4096x4096xf32>) -> (tensor<4096x4096xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0) {backend_config = "", mhlo.backend_config = {debug...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
log_gpu_fixed
add
1
18
elementwise
[[4096, 4096], [4096, 4096]]
https://github.com/Tyronita/PallasBench/blob/15f2a66/pallasbench/kernels/level1/add.py
https://github.com/Tyronita/PallasBench/raw/15f2a66/pallasbench/kernels/level1/add.py
pass
true
0
128.6307
0.2465
0.2465
0.0019
0.0019
@jax.jit def jax_add(x: jax.Array, y: jax.Array) -> jax.Array: return x + y
@jax.jit def jax_add(x: jax.Array, y: jax.Array) -> jax.Array: return x + y
null
{ lambda ; a:f32[4096,4096] b:f32[4096,4096]. let c:f32[4096,4096] = pallas_call[ compiler_params=None cost_estimate=None debug=False grid_mapping=GridMapping(grid=(32, 32), block_mappings=(BlockMapping(block_shape=(Blocked(block_size=128), Blocked(block_size=128))), BlockMapping(block_shape...
module @jit_pallas_add attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} { func.func public @main(%arg0: tensor<4096x4096xf32>, %arg1: tensor<4096x4096xf32>) -> (tensor<4096x4096xf32> {jax.result_info = "result"}) { %0 = stablehlo.custom_call @__gpu$xla.gpu.triton(%arg0, %arg1) {backend_conf...
null
NVIDIA A100 80GB PCIe
jax.experimental.pallas
triton
0.10.1
3.7.0
add_gpu_fixed
End of preview. Expand in Data Studio

PallasBench: Robust Pallas GPU Kernel Benchmark (A100)

39/45 kernels passing on NVIDIA A100 80GB -- the first GPU-focused evaluation of JAX Pallas kernels.

What is this?

PallasBench is a suite of 45 JAX Pallas kernels across 3 difficulty levels. The original kernels were designed for TPU and failed on GPU because Pallas compiles to Triton on NVIDIA hardware, which has strict block size limits that TPU's Mosaic compiler does not.

We fixed all 45 kernels for GPU compatibility and evaluated them on an A100 with correctness checking, timing, and compilation profiling.

Why does this matter?

Pallas is the only kernel DSL that targets both GPU and TPU from a single source. There are many CUDA and Triton kernel benchmarks (KernelBench, robust-kbench, KernelBot), but no Pallas benchmark existed with GPU results. This dataset fills that gap.

The kernels are correct but unoptimized -- they represent what an LLM would generate when writing Pallas code without GPU-specific tuning. This makes them ideal as the initial population for evolutionary kernel optimization (e.g., ShinkaEvolve).

Inspiration

This work follows the methodology of:

We adapt their evaluation methodology to the JAX/Pallas compilation pipeline.

The GPU Fix

PallasBench kernels used TPU-sized blocks like (1024, 4096) = 4M elements per block. On GPU, Pallas compiles through Triton, which:

  • Limits blocks to 1,048,576 elements
  • Unrolls the block into PTX instructions (1M elements = 10MB PTX = hours of ptxas compilation)
  • Has 164KB shared memory per SM (vs 16-32MB VMEM on TPU)

Our fix: 2D tiling with (128, 128) or (16, 16) blocks depending on the kernel pattern. This reduces PTX size from 10MB to ~300KB and compile time from hours to seconds.

Results Summary

Level Total Pass Error Skip
L1: Single ops 27 25 1 0
L2: Fused patterns 13 10 2 0
L3: Architecture 5 3 1 2
Total 45 39 (87%) 4 2

Remaining failures

Kernel Issue Root cause
embedding_lookup Triton non-array ops Integer indexing not supported in Triton
pwm_scan Triton non-array ops Scan with non-array state
pairwise_distance reduce_sum lowering Nested reduction not supported
triangle_update reduce_sum lowering Same
gated_mlp Weight matrices >1M elements Would need K-tiled accumulator loop
transformer_block Combines all patterns Needs full decomposition

These are JAX/Triton integration limitations, not block size issues.

Files

File Description
Complete results for all 45 kernels
SakanaAI/AI-CUDA-Engineer-Archive compatible format
Complete git diff of all GPU fixes
Robust evaluation framework (5 filters, tiling analysis, IR capture)
Pre-fix kernel source (TPU-oriented)
GPU-compatible kernel source

SakanaAI Format Schema

Each row in contains:

Field Type Description
Op_Name string Kernel name (e.g. relu, flash_attention)
Level_ID int 1-3
Task_ID int Sequential ID
Pallas_Runtime float Kernel execution time (ms), includes JIT
JAX_Baseline_Runtime float JAX jnp baseline time (ms)
Pallas_Speedup float baseline / kernel
Pallas_Code string Full fixed Pallas kernel source
Pallas_Code_Original string Original TPU-oriented source
JAX_Baseline_Code string JAX reference implementation
Correct bool Matches baseline within atol=1e-3
Error string Error message if failed
Target_Hardware string NVIDIA A100 80GB PCIe
Framework string jax.experimental.pallas
Backend string triton
Fix_Applied string Type of fix (2D tiling, block_rows clamped, etc)

Hardware

Component Specification
GPU NVIDIA A100 80GB PCIe
SMs 108
HBM Bandwidth 2,039 GB/s
L2 Cache 40 MB
Shared Memory 164 KB/SM
Compute 8.0
Instance Azure Standard_NC24ads_A100_v4
RAM 216 GB
JAX 0.10.1
Triton 3.7.0

Provenance

Citation

Need exactly one file argument

License

Apache 2.0

Downloads last month
58