From 9e2424c1e2c16156607f7ffa0596f93adf0ea966 Mon Sep 17 00:00:00 2001 From: bhuztez <bhuztez@gmail.com> Date: Sat, 3 Sep 2016 13:56:24 +0800 Subject: [PATCH] add isl_schedule_node_type and read_header isl/ilp.h --- gen_wrap.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gen_wrap.py b/gen_wrap.py index b3b4946..d057d30 100644 --- a/gen_wrap.py +++ b/gen_wrap.py @@ -221,6 +221,22 @@ ENUMS = { isl_dim_all, """, + # schedule_type.h + "isl_schedule_node_type": """ + isl_schedule_node_error, + isl_schedule_node_band, + isl_schedule_node_context, + isl_schedule_node_domain, + isl_schedule_node_expansion, + isl_schedule_node_extension, + isl_schedule_node_filter, + isl_schedule_node_leaf, + isl_schedule_node_guard, + isl_schedule_node_mark, + isl_schedule_node_sequence, + isl_schedule_node_set, + """, + # ast_type.h "isl_ast_op_type": """ isl_ast_op_error, @@ -1577,6 +1593,7 @@ def gen_wrapper(include_dirs, include_barvinok=False, isl_version=None): fdata.read_header("isl/options.h") fdata.read_header("isl/ast.h") fdata.read_header("isl/ast_build.h") + fdata.read_header("isl/ilp.h") if isl_version is None: fdata.read_header("isl_declaration_macros_expanded.h") -- GitLab