model-as-a-kernel / flake.nix
phanerozoic's picture
model-as-a-kernel v1 source
f4ba638 verified
Raw
History Blame
256 Bytes
{
description = "Flake for model-as-a-kernel";
inputs = {
builder.url = "github:huggingface/kernels";
};
outputs =
{
self,
builder,
}:
builder.lib.genKernelFlakeOutputs {
inherit self;
path = ./.;
};
}