You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
319 B
16 lines
319 B
#ifndef _CPU_H
|
|
#define _CPU_H
|
|
|
|
#include <isl/ctx.h>
|
|
|
|
#include "ppcg.h"
|
|
|
|
struct ppcg_options;
|
|
|
|
__isl_give isl_printer *print_cpu(__isl_take isl_printer *p,
|
|
struct ppcg_scop *ps, struct ppcg_options *options);
|
|
int generate_cpu(isl_ctx *ctx, struct ppcg_options *options,
|
|
const char *input, const char *output);
|
|
|
|
#endif
|