UNPKG

@tensorflow/tfjs-core

Version:

Hardware-accelerated JavaScript library for machine intelligence

7 lines (6 loc) 374 B
import { Tensor } from '../tensor'; import { TensorLike } from '../types'; import { Activation } from './fused_util'; declare function matMul_<T extends Tensor>(a: T | TensorLike, b: T | TensorLike, transposeA?: boolean, transposeB?: boolean, bias?: Tensor | TensorLike, activation?: Activation): T; export declare const matMul: typeof matMul_; export { Activation };