Lines Matching defs:isl

3 isl = cdll.LoadLibrary("libisl.so")
11 ptr = isl.isl_ctx_alloc()
16 isl.isl_ctx_free(self)
69 return "No isl name available"
82 getattr(isl, "isl_printer_print_" + self.isl_name()).argtypes = [
88 return getattr(isl, "isl_" + self.isl_name() + "_" + name)
91 getattr(isl, "isl_printer_print_" + self.isl_name())(printer, self)
161 dim = isl.isl_dim_copy(dim)
162 return isl.isl_map_lex_lt(dim)
166 dim = isl.isl_dim_copy(dim)
167 return isl.isl_map_lex_le(dim)
171 dim = isl.isl_dim_copy(dim)
172 return isl.isl_map_lex_gt(dim)
176 dim = isl.isl_dim_copy(dim)
177 return isl.isl_map_lex_ge(dim)
219 dimParam = isl.isl_dim_size(self, 1)
220 dimIn = isl.isl_dim_size(self, 2)
221 dimOut = isl.isl_dim_size(self, 3)
243 self.ptr = isl.isl_printer_to_str(ctx)
246 self.ptr = isl.isl_printer_set_output_format(self, format)
252 isl.isl_printer_free(self)
255 return isl.isl_printer_get_str(self)
417 islFunction = getattr(isl, functionName)
426 ops = getattr(isl, "isl_" + ops.isl_name() + "_copy")(ops)
431 opOne = getattr(isl, "isl_" + opOne.isl_name() + "_copy")(opOne)
432 opTwo = getattr(isl, "isl_" + opTwo.isl_name() + "_copy")(opTwo)
438 islFunction = getattr(isl, functionName)
454 islFunction = getattr(isl, functionName)
472 islFunction = getattr(isl, functionName)
485 isl.isl_ctx_free.argtypes = [Context]
486 isl.isl_basic_set_read_from_str.argtypes = [Context, c_char_p, c_int]
487 isl.isl_set_read_from_str.argtypes = [Context, c_char_p, c_int]
488 isl.isl_basic_set_copy.argtypes = [BSet]
489 isl.isl_basic_set_copy.restype = c_int
490 isl.isl_set_copy.argtypes = [Set]
491 isl.isl_set_copy.restype = c_int
492 isl.isl_set_copy.argtypes = [Set]
493 isl.isl_set_copy.restype = c_int
494 isl.isl_set_free.argtypes = [Set]
495 isl.isl_basic_set_get_ctx.argtypes = [BSet]
496 isl.isl_basic_set_get_ctx.restype = Context.from_ptr
497 isl.isl_set_get_ctx.argtypes = [Set]
498 isl.isl_set_get_ctx.restype = Context.from_ptr
499 isl.isl_basic_set_get_dim.argtypes = [BSet]
500 isl.isl_basic_set_get_dim.restype = Dim.from_ptr
501 isl.isl_set_get_dim.argtypes = [Set]
502 isl.isl_set_get_dim.restype = Dim.from_ptr
503 isl.isl_union_set_get_dim.argtypes = [USet]
504 isl.isl_union_set_get_dim.restype = Dim.from_ptr
506 isl.isl_basic_map_read_from_str.argtypes = [Context, c_char_p, c_int]
507 isl.isl_map_read_from_str.argtypes = [Context, c_char_p, c_int]
508 isl.isl_basic_map_free.argtypes = [BMap]
509 isl.isl_map_free.argtypes = [Map]
510 isl.isl_basic_map_copy.argtypes = [BMap]
511 isl.isl_basic_map_copy.restype = c_int
512 isl.isl_map_copy.argtypes = [Map]
513 isl.isl_map_copy.restype = c_int
514 isl.isl_map_get_ctx.argtypes = [Map]
515 isl.isl_basic_map_get_ctx.argtypes = [BMap]
516 isl.isl_basic_map_get_ctx.restype = Context.from_ptr
517 isl.isl_map_get_ctx.argtypes = [Map]
518 isl.isl_map_get_ctx.restype = Context.from_ptr
519 isl.isl_basic_map_get_dim.argtypes = [BMap]
520 isl.isl_basic_map_get_dim.restype = Dim.from_ptr
521 isl.isl_map_get_dim.argtypes = [Map]
522 isl.isl_map_get_dim.restype = Dim.from_ptr
523 isl.isl_union_map_get_dim.argtypes = [UMap]
524 isl.isl_union_map_get_dim.restype = Dim.from_ptr
525 isl.isl_printer_free.argtypes = [Printer]
526 isl.isl_printer_to_str.argtypes = [Context]
527 isl.isl_printer_print_basic_set.argtypes = [Printer, BSet]
528 isl.isl_printer_print_set.argtypes = [Printer, Set]
529 isl.isl_printer_print_basic_map.argtypes = [Printer, BMap]
530 isl.isl_printer_print_map.argtypes = [Printer, Map]
531 isl.isl_printer_get_str.argtypes = [Printer]
532 isl.isl_printer_get_str.restype = c_char_p
533 isl.isl_printer_set_output_format.argtypes = [Printer, c_int]
534 isl.isl_printer_set_output_format.restype = c_int
535 isl.isl_dim_size.argtypes = [Dim, c_int]
536 isl.isl_dim_size.restype = c_int
538 isl.isl_map_lex_lt.argtypes = [c_int]
539 isl.isl_map_lex_lt.restype = Map.from_ptr
540 isl.isl_map_lex_le.argtypes = [c_int]
541 isl.isl_map_lex_le.restype = Map.from_ptr
542 isl.isl_map_lex_gt.argtypes = [c_int]
543 isl.isl_map_lex_gt.restype = Map.from_ptr
544 isl.isl_map_lex_ge.argtypes = [c_int]
545 isl.isl_map_lex_ge.restype = Map.from_ptr
547 isl.isl_union_map_compute_flow.argtypes = [
560 sink = getattr(isl, "isl_" + sink.isl_name() + "_copy")(sink)
561 must_source = getattr(isl, "isl_" + must_source.isl_name() + "_copy")(must_source)
562 may_source = getattr(isl, "isl_" + may_source.isl_name() + "_copy")(may_source)
563 schedule = getattr(isl, "isl_" + schedule.isl_name() + "_copy")(schedule)
568 isl.isl_union_map_compute_flow(