← Back to C-Kernel-Engine Docs Doxygen Source Documentation
ckernel_codegen_v2_dispatch.c
Go to the documentation of this file.
2 
3 #include <stdio.h>
4 
5 void ck_codegen_v2_emit_dispatch(FILE *out, const CKIRV2Graph *graph)
6 {
7  (void)graph;
8  fprintf(out,
9  "static void ck_v2_dispatch_node(int node_id) {\n"
10  " /* TODO: wire kernel dispatch using node metadata. */\n"
11  " (void)node_id;\n"
12  "}\n\n");
13 }
void ck_codegen_v2_emit_dispatch(FILE *out, const CKIRV2Graph *graph)