Set seed for DynamicQuantizeMatMul tests (#19896)

Seed for DynamicQuantizeMatMul tests to avoid pipeline failures with marginal mismatches.
This commit is contained in:
raoanag 2024-03-13 16:49:55 -08:00 committed by GitHub
parent 4ac98d6d65
commit 9f08f8d5b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;