MCPcopy Create free account
hub / github.com/apache/singa / transpose

Function transpose

examples/model_selection/Trails/singa_pkg_code/tensor.py:818–829  ·  view source on GitHub ↗

To transpose the tensor Args: t: input tensor axes: axes to transpose Returns: the transposed tensor

(t, axes=None)

Source from the content-addressed store, hash-verified

816
817
818def transpose(t, axes=None):
819 '''To transpose the tensor
820
821 Args:
822 t: input tensor
823 axes: axes to transpose
824
825 Returns:
826 the transposed tensor
827 '''
828 ret = t.transpose(axes)
829 return ret
830
831
832def copy_data_to_from(dst, src, size, dst_offset=0, src_offset=0):

Callers 2

einsumFunction · 0.70
tensordotFunction · 0.70

Calls 1

transposeMethod · 0.45

Tested by

no test coverage detected