188 lines
4.9 KiB
Python
188 lines
4.9 KiB
Python
"""Tensor and Operation class for computation declaration."""
|
|
# pylint: disable=invalid-name
|
|
from __future__ import absolute_import as _abs
|
|
from ._ffi.node import NodeBase, NodeGeneric, register_node, convert_to_node
|
|
from . import _api_internal
|
|
from . import make as _make
|
|
from . import expr as _expr
|
|
|
|
|
|
class TensorSlice(NodeGeneric, _expr.ExprOp):
|
|
"""Auxiliary data structure for enable slicing syntax from tensor."""
|
|
|
|
def __init__(self, tensor, indices):
|
|
if not isinstance(indices, tuple):
|
|
indices = (indices,)
|
|
self.tensor = tensor
|
|
self.indices = indices
|
|
|
|
def __getitem__(self, indices):
|
|
if not isinstance(indices, tuple):
|
|
indices = (indices,)
|
|
return TensorSlice(self.tensor, self.indices + indices)
|
|
|
|
def asnode(self):
|
|
"""Convert slice to node."""
|
|
return self.tensor(*self.indices)
|
|
|
|
@property
|
|
def dtype(self):
|
|
"""Data content of the tensor."""
|
|
return self.tensor.dtype
|
|
|
|
@register_node
|
|
class TensorIntrinCall(NodeBase):
|
|
"""Intermediate structure for calling a tensor intrinsic."""
|
|
pass
|
|
|
|
|
|
itervar_cls = None
|
|
|
|
|
|
@register_node
|
|
class Tensor(NodeBase, _expr.ExprOp):
|
|
"""Tensor object, to construct, see function.Tensor"""
|
|
|
|
def __call__(self, *indices):
|
|
ndim = self.ndim
|
|
if len(indices) != ndim:
|
|
raise ValueError("Need to provide %d index in tensor slice" % ndim)
|
|
indices = convert_to_node(indices)
|
|
args = []
|
|
for x in indices:
|
|
if isinstance(x, _expr.Expr):
|
|
args.append(x)
|
|
elif isinstance(x, iter_var_cls):
|
|
args.append(x.var)
|
|
else:
|
|
raise ValueError("The indices must be expression")
|
|
|
|
return _make.Call(self.dtype, self.op.name,
|
|
args, _expr.Call.Halide,
|
|
self.op, self.value_index)
|
|
|
|
def __getitem__(self, indices):
|
|
return TensorSlice(self, indices)
|
|
|
|
def __hash__(self):
|
|
return _api_internal._TensorHash(self)
|
|
|
|
def __eq__(self, other):
|
|
if not isinstance(other, Tensor):
|
|
if isinstance(other, _expr.ExprOp):
|
|
return _expr.EqualOp(self, other)
|
|
return False
|
|
if self.ndim == 0 and other.ndim == 0:
|
|
raise ValueError("Equal == comparison among rank-0 tensor is ambiguous, "
|
|
"use Tensor.equal for content expression equvalence, "
|
|
"use Tensor.same_as for exact reference comparison")
|
|
return _api_internal._TensorEqual(self, other)
|
|
|
|
@property
|
|
def ndim(self):
|
|
"""Dimension of the tensor."""
|
|
return len(self.shape)
|
|
|
|
@property
|
|
def axis(self):
|
|
"""Axis of the tensor."""
|
|
return self.__getattr__("axis")
|
|
|
|
@property
|
|
def op(self):
|
|
"""The corressponding :any:`Operation`."""
|
|
return self.__getattr__("op")
|
|
|
|
@property
|
|
def value_index(self):
|
|
"""The output value index the tensor corressponds to."""
|
|
return self.__getattr__("value_index")
|
|
|
|
@property
|
|
def shape(self):
|
|
"""The output shape of the tensor."""
|
|
return self.__getattr__("shape")
|
|
|
|
@property
|
|
def name(self):
|
|
op = self.op
|
|
if op.num_outputs == 1:
|
|
return op.name
|
|
return "%s.v%d" % (op.name, self.value_index)
|
|
|
|
|
|
|
|
class Operation(NodeBase):
|
|
"""Represent an operation that generate a tensor"""
|
|
|
|
def output(self, index):
|
|
"""Get the index-th output of the operation
|
|
|
|
Parameters
|
|
----------
|
|
index : int
|
|
The index size.
|
|
|
|
Returns
|
|
-------
|
|
out : Tensor
|
|
The i-th output.
|
|
"""
|
|
return _api_internal._OpGetOutput(self, index)
|
|
|
|
@property
|
|
def num_outputs(self):
|
|
"""Number of outputs of this op."""
|
|
return _api_internal._OpNumOutputs(self)
|
|
|
|
@property
|
|
def input_tensors(self):
|
|
"""List of input tensors to this op."""
|
|
return _api_internal._OpInputTensors(self)
|
|
|
|
|
|
@register_node
|
|
class PlaceholderOp(Operation):
|
|
"""Placeholder operation."""
|
|
pass
|
|
|
|
|
|
@register_node
|
|
class ComputeOp(Operation):
|
|
"""Compute operation."""
|
|
@property
|
|
def axis(self):
|
|
"""Represent axis of IterVar, only defined when it is a ComputeOp"""
|
|
return self.__getattr__("axis")
|
|
|
|
@property
|
|
def reduce_axis(self):
|
|
"""Represent axis of reductions, only defined when it is a ComputeOp"""
|
|
return self.__getattr__("reduce_axis")
|
|
|
|
|
|
@register_node
|
|
class TensorComputeOp(Operation):
|
|
"""Tensor operation."""
|
|
pass
|
|
|
|
|
|
@register_node
|
|
class ScanOp(Operation):
|
|
"""Scan operation."""
|
|
@property
|
|
def scan_axis(self):
|
|
"""Represent axis of scan, only defined when it is a ScanOp"""
|
|
return self.__getattr__("scan_axis")
|
|
|
|
|
|
@register_node
|
|
class ExternOp(Operation):
|
|
"""Extern operation."""
|
|
pass
|
|
|
|
@register_node
|
|
class HybridOp(Operation):
|
|
"""Hybrid operation."""
|
|
pass
|