relax threshold of InternalNumericalCheck on cpu from 0.0001 to 0.0002 (#15879)

### Description
relax threshold of InternalNumericalCheck on cpu from 0.0001 to 0.0002



### Motivation and Context
To fix a failed Unit Test.
This commit is contained in:
Jian Chen 2023-05-10 10:56:12 -07:00 committed by GitHub
parent 36c9ae0f58
commit bd58109678
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -894,7 +894,7 @@ void TestQuantizedAttentionPastState(int64_t batch,
test.AddInput<WeightT>("weight_zero_point", {weight_scale_zp_size}, weight_zero_point);
test.AddInput<float>("past", past_dims, past_data);
test.AddReferenceOutputs(reference_model);
test.AddReferenceOutputs(reference_model, 0.0002f);
test.Run();
}