torch.nn.functional.GroupedMMFunctionalOptions
export interface GroupedMMFunctionalOptions {
/** Optional list of bias tensors to be added to each matrix multiplication result. (default: null) */
bias_tensor_list?: Tensor[] | null;
/** The desired data type of returned tensors. (default: null) */
out_dtype?: DType;
}bias_tensor_list(Tensor[] | null)optional- – Optional list of bias tensors to be added to each matrix multiplication result. (default: null)
out_dtype(DType)optional- – The desired data type of returned tensors. (default: null)
Options for grouped_mm functional operation.