YARQA-ATTN / flake.nix
betterwithage's picture
Bind GitHub szl-holdings/YARQA-ATTN@098d19b: KERNEL card (python present, not import-LIVE) + torch-ext/yarqa_attn
621477d verified
Raw
History Blame Contribute Delete
473 Bytes
{
description = "Flake for yarqa-attn (torch-noarch CPU compartment attention)";
inputs = {
kernel-builder.url = "github:huggingface/kernels";
};
outputs =
{
self,
kernel-builder,
}:
kernel-builder.lib.genKernelFlakeOutputs {
inherit self;
path = ./.;
# pytest is for testshell only. Do not add it as a runtime
# dependency of the kernel package.
pythonCheckInputs = pkgs: with pkgs; [ pytest ];
};
}