aboutsummaryrefslogtreecommitdiff
path: root/reference_model/src/verify/verifiers.h
diff options
context:
space:
mode:
Diffstat (limited to 'reference_model/src/verify/verifiers.h')
-rw-r--r--reference_model/src/verify/verifiers.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/reference_model/src/verify/verifiers.h b/reference_model/src/verify/verifiers.h
index 152cd6a..6830115 100644
--- a/reference_model/src/verify/verifiers.h
+++ b/reference_model/src/verify/verifiers.h
@@ -45,11 +45,12 @@ bool verifyExact(const CTensor* referenceTensor, const CTensor* implementationTe
///
/// \param referenceTensor Reference tensor
/// \param implementationTensor Implementation resulting tensor
-/// \param m Number of manisa bits in the floating point representation
-/// \param n Number of elements in the product
+/// \param rpInfo Reduce-product verification meta-data
///
/// \return True if compliant else false
-bool verifyReduceProduct(const CTensor* referenceTensor, const CTensor* implementationTensor, uint64_t m, uint64_t n);
+bool verifyReduceProduct(const CTensor* referenceTensor,
+ const CTensor* implementationTensor,
+ const ReduceProductVerifyInfo& rpInfo);
/// \brief Perform ULP result verification
///