Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit c41e8fb

Browse files
Delete unused output declaration in test_tc_mapper_bugs.cc
1 parent 4d2e7e8 commit c41e8fb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/cuda/test_tc_mapper_bugs.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,6 @@ TEST_F(TMM_128_1024_1024, Tightening) {
660660
TEST(LayerNorm, ReferenceBelongsToTwoGroups) {
661661
at::Tensor mat1 = at::CUDA(at::kFloat).rand({7, 32, 64});
662662
std::vector<at::Tensor> inputs = {mat1};
663-
std::vector<at::Tensor> outputs;
664663

665664
static constexpr auto TC = R"TC(
666665
def layernorm(float(T, B, C) I) -> (O, mean, centered, var) {
@@ -706,7 +705,6 @@ TEST(TMM_128_1024_1000, DisjunctiveFilter) {
706705
at::Tensor I = at::CUDA(at::kFloat).rand({128, 1024});
707706
at::Tensor W = at::CUDA(at::kFloat).rand({1000, 1024});
708707
std::vector<at::Tensor> inputs = {I, W};
709-
std::vector<at::Tensor> outputs;
710708

711709
auto TC = std::string(R"TC(
712710
def tmm_naive(float(B, X) I, float(Y, X) W) -> (O) {

0 commit comments

Comments
 (0)