MatMul typedef

MatMul = void Function(Pointer<Float> a, Pointer<Float> b, Pointer<Float> c, int M, int N, int K)

Implementation

typedef MatMul =
    void Function(
      Pointer<Float> a,
      Pointer<Float> b,
      Pointer<Float> c,
      int M,
      int N,
      int K,
    );