torch.AddcmulOptions
export interface AddcmulOptions<OutShape extends Shape = Shape> {
/** Scaling factor for the multiplication. Default is 1. */
value?: number;
/** Pre-allocated output tensor. */
out?: Tensor<OutShape>;
}OutShapeextends Shapevalue(number)optional- – Scaling factor for the multiplication. Default is 1.
out(Tensor<OutShape>)optional- – Pre-allocated output tensor.
Options for addcmul operation: input + value * tensor1 * tensor2