@thi.ng/tensors
Version:
0D/1D/2D/3D/4D tensors with extensible polymorphic operations and customizable storage
12 lines • 409 B
TypeScript
import type { ITensor2 } from "./api.js";
/**
* Matrix-matrix multiplication between matrix `a` (MxN) and matrix `b` (PxQ).
* If `out` is given, it MUST be a MxQ tensor. If null then a new one will be
* created, using `a`'s storage impl.
*
* @param out
* @param a
* @param b
*/
export declare const mulM: (out: ITensor2 | null, a: ITensor2, b: ITensor2) => ITensor2;
//# sourceMappingURL=mulm.d.ts.map