my_softmax_function / flake.nix
tiagomonteiro0715
initial softmax attention kernel
6f4b39f
Raw
History Blame
305 Bytes
{
description = "my_softmax_function — fused softmax-attention kernel";
inputs = {
kernel-builder.url = "github:huggingface/kernel-builder";
};
outputs =
{
self,
kernel-builder,
}:
kernel-builder.lib.genFlakeOutputs {
inherit self;
path = ./.;
};
}