asc.language.tile.binary_ops.matmul
- asc.language.tile.binary_ops.matmul(input: Tile, other: Tile) Tile
Computes the matrix multiplication of
inputandother.- Parameters:
input – the left operand (2D tile)
other – the right operand (2D tile)
- Returns:
the result of the matrix multiplication
- Return type:
Note
Input tiles must have either
float16orfloat32data type and compatible shapes. Result tile type is alwaysfloat32.This function can also be called as a member function on
Tile, asx.__matmul__(...)instead ofmatmul(x, ...).