Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
wujingyue committed Nov 12, 2024
1 parent 21c6e2e commit 47b8ea7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmarks/cpp/lstm_cell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ static void setupFusion(Fusion* fusion) {

TensorView* tvs[16];
for (size_t i = 0; i < 16; i++) {
tvs[i] = makeContigTensor(2, DataType::Float);
tvs[i] = makeSymbolicTensor(2, DataType::Float);
fusion->addInput(tvs[i]);
}

const auto cx = makeContigTensor(2, DataType::Float);
const auto cx = makeSymbolicTensor(2, DataType::Float);
fusion->addInput(cx);

const auto in_x = add(add(add(tvs[0], tvs[1]), tvs[2]), tvs[3]);
Expand Down

0 comments on commit 47b8ea7

Please sign in to comment.