Matmul

matrix multiplication

  1. struct Matmul(T, Storage)
    struct Matmul (
    T
    Storage
    ) if (
    Storage.deviceof == "cpu"
    ) {
    Matrix a;
    Matrix b;
    }
  2. auto matmul(Tensor!(2, T, Storage) a, Tensor!(2, T, Storage) b)

Meta