← Back to C-Kernel-Engine Docs Doxygen Source Documentation
ck-kernel-prefill.c File Reference
#include <stdint.h>
#include <stddef.h>

Go to the source code of this file.

Functions

int ck_prefill_forward (const void *weights, const int32_t *tokens, int n_tokens, float *hidden_out, void *kv_cache, int kv_pos)
 

Function Documentation

◆ ck_prefill_forward()

int ck_prefill_forward ( const void *  weights,
const int32_t *  tokens,
int  n_tokens,
float *  hidden_out,
void *  kv_cache,
int  kv_pos 
)

Definition at line 12 of file ck-kernel-prefill.c.

19  {
20  // Prefill not yet implemented - use decode path with loop
21  (void)weights;
22  (void)tokens;
23  (void)n_tokens;
24  (void)hidden_out;
25  (void)kv_cache;
26  (void)kv_pos;
27  return 0;
28 }