cpu.h 319 B

123456789101112131415
  1. #ifndef _CPU_H
  2. #define _CPU_H
  3. #include <isl/ctx.h>
  4. #include "ppcg.h"
  5. struct ppcg_options;
  6. __isl_give isl_printer *print_cpu(__isl_take isl_printer *p,
  7. struct ppcg_scop *ps, struct ppcg_options *options);
  8. int generate_cpu(isl_ctx *ctx, struct ppcg_options *options,
  9. const char *input, const char *output);
  10. #endif