File size: 401 Bytes
88b8ef2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | {
description = "Flake for FlashRT FP4 GEMM kernels";
inputs = {
# huggingface/kernels#741: CUTLASS 4.4.2 plus the corrected 4.5.2 hash.
kernel-builder.url = "github:huggingface/kernels/870e825d881664e39f9287a27a74ef63ff3c545e";
};
outputs =
{
self,
kernel-builder,
}:
kernel-builder.lib.genKernelFlakeOutputs {
inherit self;
path = ./.;
};
}
|