DocumentationFunctionalReduce Opsprod_opprod_op View the code on GitHub Structs Functions prod prod(arg0: Array) -> Array Computes the prod of the input array along all axes.Args arg0: Array The input array. Returns Array - An array containing the prod of the input array along all axes. Examples: a = Array([[1, 2], [3, 4]]) result = prod(a) print(result)Note: This function supports: Automatic differentiation (forward and reverse modes). Complex valued arguments. Last updated on January 28, 2025mean_opreduce_add_op