torch.AddbmmOptions
export interface AddbmmOptions<OutShape extends Shape = Shape> {
/** Scaling factor for the input tensor. Default is 1. */
beta?: number;
/** Scaling factor for the summed product. Default is 1. */
alpha?: number;
/** Pre-allocated output tensor. */
out?: Tensor<OutShape>;
}OutShapeextends Shapebeta(number)optional- – Scaling factor for the input tensor. Default is 1.
alpha(number)optional- – Scaling factor for the summed product. Default is 1.
out(Tensor<OutShape>)optional- – Pre-allocated output tensor.
Options for addbmm operation