Home | History | Annotate | Download | only in kernels

Lines Matching defs:product

43     // Compute the output shape.  Determine product of specified
46 int64 product = 1;
50 OP_REQUIRES_OK(context, ValidateSizes<int32>(sizes, &product,
54 OP_REQUIRES_OK(context, ValidateSizes<int64>(sizes, &product,
65 context, product > 0,
69 const int64 missing = input.NumElements() / product;
71 context, product * missing == input.NumElements(),
75 product));
94 Status ValidateSizes(const Tensor& sizes, int64* product, int* unknown_index,
96 *product = 1;
115 (*product) *= size;