aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/Reference.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/Reference.h')
-rw-r--r--tests/validation/Reference.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/validation/Reference.h b/tests/validation/Reference.h
index 4cfd3c24c8..973322d666 100644
--- a/tests/validation/Reference.h
+++ b/tests/validation/Reference.h
@@ -152,13 +152,15 @@ public:
* @return Computed raw tensor.
*/
static RawTensor compute_reference_bitwise_not(const TensorShape &shape);
- /** Compute reference 3-by-3 box filter.
+ /** Compute reference box3x3 filter.
*
- * @param[in] shape Shape of the input and output tensors.
+ * @param[in] shape Shape of the input and output tensors.
+ * @param[in] border_mode BorderMode used by the input tensor.
+ * @param[in] constant_border_value Constant to use if @p border_mode == CONSTANT.
*
* @return Computed raw tensor.
*/
- static RawTensor compute_reference_box3x3(const TensorShape &shape);
+ static RawTensor compute_reference_box3x3(const TensorShape &shape, BorderMode border_mode, uint8_t constant_border_value);
/** Compute reference depth convert.
*
* @param[in] shape Shape of the input and output tensors.