コード例 #1
0
ファイル: shape_inference.py プロジェクト: iskandr/parakeet
 def visit_IndexMap(self, expr):
     bounds = self.visit_expr(expr.shape)
     clos = self.visit_expr(expr.fn)
     if isinstance(clos.fn.input_types[-1],
                   TupleT) or bounds.__class__ is not Tuple:
         indices = [bounds]
     else:
         indices = bounds.elts
     elt_result = symbolic_call(clos, indices)
     return make_shape(combine_dims(bounds, elt_result))
コード例 #2
0
ファイル: shape_inference.py プロジェクト: iskandr/parakeet
 def visit_IndexScan(self, expr):
     fn = self.visit_expr(expr.fn)
     combine = self.visit_expr(expr.combine)
     emit = self.visit_expr(expr.emit)
     bounds = self.visit_expr(expr.shape)
     if isinstance(fn.fn.input_types[-1],
                   TupleT) or bounds.__class__ is not Tuple:
         indices = [bounds]
     else:
         indices = bounds.elts
     elt_shape = symbolic_call(fn, indices)
     init_shape = elt_shape if self.expr_is_none(
         expr.init) else self.visit_expr(expr.init)
     acc_shape = symbolic_call(combine, [init_shape, elt_shape])
     output_elt_shape = symbolic_call(emit, [acc_shape])
     return make_shape(combine_dims(bounds, output_elt_shape))