mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-10 17:37:14 +00:00
Set seed for DynamicQuantizeMatMul tests (#19896)
Seed for DynamicQuantizeMatMul tests to avoid pipeline failures with marginal mismatches.
This commit is contained in:
parent
4ac98d6d65
commit
9f08f8d5b2
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ void TestDynamicQuantizeMatMul(bool is_matrix_b_constant,
|
|||
bool has_bias = false,
|
||||
bool empty_input = false) {
|
||||
// create rand inputs
|
||||
RandomValueGenerator random{};
|
||||
RandomValueGenerator random{1668426375};
|
||||
|
||||
int64_t M = empty_input ? 1 : 4;
|
||||
int64_t N = 128;
|
||||
|
|
|
|||
Loading…
Reference in a new issue