mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-28 20:11:22 +00:00
Disable NegativeLogLikelihoodLoss_LargeSizeTensor test (#4979)
Disabling this test until it's intermittent failure is root caused, this is a function and does not have a dedicated op by itself. However, this op is not used in known model to the best of my knowledge to disabling this test for the sanity of CI until the investigation is over is probably reasonable.
This commit is contained in:
parent
b41e5e88fb
commit
6d9d252bc3
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ TEST(CudaKernelTest, NegativeLogLikelihoodLoss_MediumSizeTensor) {
|
|||
TestNegativeLogLikelihoodLoss(&X_dims, &index_dims, nullptr, &Y_dims_none, "none");
|
||||
}
|
||||
|
||||
TEST(CudaKernelTest, NegativeLogLikelihoodLoss_LargeSizeTensor) {
|
||||
TEST(CudaKernelTest, DISABLED_NegativeLogLikelihoodLoss_LargeSizeTensor) {
|
||||
std::vector<int64_t> X_dims{4, 512, 30528};
|
||||
std::vector<int64_t> index_dims{4, 30528};
|
||||
std::vector<int64_t> weight_dims{512};
|
||||
|
|
|
|||
Loading…
Reference in a new issue