Skip to content

Commit

Permalink
Apply clang-format 18
Browse files Browse the repository at this point in the history
Summary: Previously this code conformed from clang-format 12.

Reviewed By: igorsugak

Differential Revision: D56065247

fbshipit-source-id: f5a985dd8f8b84f2f9e1818b3719b43c5a1b05b3
  • Loading branch information
zertosh authored and facebook-github-bot committed Apr 14, 2024
1 parent bbe9e3c commit 4a2b9b0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions flashlight/lib/text/test/decoder/Seq2SeqDecoderTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ void logSeq2seqUpdateFuncParams(
const std::vector<int>& prevStepTokenIdxs,
const std::vector<EmittingModelStatePtr>& prevStepModelStates,
const int& timestep) {
std::cout << "seq2seq update func called with"
<< " N = " << N << " T = " << T << " prevStepTokenIdxs {";
std::cout << "seq2seq update func called with" << " N = " << N << " T = " << T
<< " prevStepTokenIdxs {";
for (int i : prevStepTokenIdxs) {
std::cout << i << ", ";
}
std::cout << "} "
<< " prevStepModelStates vec of size " << prevStepModelStates.size()
<< " timestep = " << timestep << std::endl;
std::cout << "} " << " prevStepModelStates vec of size "
<< prevStepModelStates.size() << " timestep = " << timestep
<< std::endl;
}

TEST(Seq2SeqDecoderTest, LexiconFreeBasic) {
Expand Down

0 comments on commit 4a2b9b0

Please sign in to comment.