MatMulFunc typedef

MatMulFunc = Void Function(Pointer<Float> a, Pointer<Float> b, Pointer<Float> c, Int32 M, Int32 N, Int32 K)

Implementation

typedef MatMulFunc =
    Void Function(
      Pointer<Float> a,
      Pointer<Float> b,
      Pointer<Float> c,
      Int32 M,
      Int32 N,
      Int32 K,
    );