[8/N] Don't skip ASAN on some tests (#140081)

Fixes #ISSUE_NUMBER

Pull Request resolved: https://github.com/pytorch/pytorch/pull/140081
Approved by: https://github.com/ezyang
This commit is contained in:
cyy 2024-11-09 01:00:13 +00:00 committed by PyTorch MergeBot
parent 58b661cda2
commit 263d8f7a94

View File

@ -11,7 +11,6 @@
#include <torch/csrc/lazy/ts_backend/dynamic_ir.h>
#include <torch/csrc/lazy/ts_backend/ts_backend_impl.h>
#include <torch/torch.h>
#include <iostream>
namespace torch {
namespace lazy {
@ -8136,9 +8135,6 @@ TEST_F(LazyOpsTest, TestMaxUnpool3D) {
}
TEST_F(LazyOpsTest, TestNllLoss) {
// TODO(whc) debug divide-by-zero failure under ASAN
GTEST_SKIP();
int batch = 6;
int classes = 2;
// TODO(asuhan): Fix the torch::kDouble case.
@ -10917,9 +10913,6 @@ TEST_F(LazyOpsTest, TestBinaryCrossEntropyBackward) {
}
TEST_F(LazyOpsTest, TestNllLossBackward) {
// TODO(whc) debug divide-by-zero failure under ASAN
GTEST_SKIP();
int batch = 6;
int classes = 2;
// TODO(asuhan): Fix the torch::kDouble case.