File size: 524 Bytes
6f4b39f
 
 
 
fcfe221
 
 
6f4b39f
 
 
 
 
 
 
fcfe221
 
6f4b39f
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  description = "my_softmax_function — fused softmax-attention kernel";

  inputs = {
    # New merged repo (kernel-builder folded into huggingface/kernels).
    # Its metadata schema matches the current `kernels` loader library.
    kernel-builder.url = "github:huggingface/kernels";
  };

  outputs =
    {
      self,
      kernel-builder,
    }:
    # genFlakeOutputs was renamed to genKernelFlakeOutputs in the new repo.
    kernel-builder.lib.genKernelFlakeOutputs {
      inherit self;
      path = ./.;
    };
}