Skip to content

Commit 119912f

Browse files
committed
benchdnn: utils: compare: add condition on rdiff for eltwise po
1 parent 301e603 commit 119912f

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

tests/benchdnn/utils/compare.cpp

+12-2
Original file line numberDiff line numberDiff line change
@@ -336,9 +336,19 @@ int compare_t::compare_p2p(const dnn_mem_t &exp_mem, const dnn_mem_t &got_mem,
336336
// function). We rely on validation of pure eltwise and let some
337337
// big rdiff errors slip away hoping that absolute error is good
338338
// enough.
339-
const float experimental_eltwise_trh
339+
// Note: two scenarios covered:
340+
// * When rdiff is bigger due to small output values but diff is
341+
// small due to single point computation or short acc chain.
342+
// * When diff is no longer small due to longer acc chain, but rdiff
343+
// is still small but greater than 0.
344+
const float experimental_eltwise_trh_diff
340345
= std::max(epsilon_dt(dt), 2e-5f);
341-
ok = has_eltwise && args.diff <= experimental_eltwise_trh;
346+
const float experimental_eltwise_trh_rel_diff
347+
= std::max(epsilon_dt(dt), 1e-6f);
348+
ok = has_eltwise
349+
&& (args.diff <= experimental_eltwise_trh_diff
350+
|| args.rel_diff
351+
<= experimental_eltwise_trh_rel_diff);
342352
if (ok) break;
343353

344354
// For eltwise it also may happen that threshold is really small,

0 commit comments

Comments
 (0)