Skip to content

Commit

Permalink
Breadth first Iterator now pre instead of post increment.
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandroarmas committed Jun 2, 2022
1 parent d994e62 commit 05a70f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensor_backwards_pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ namespace NeuralNetwork {
void ReversePass::backwards(Tensor& _t,
PrintTag _ ) {

for (auto it = _t.begin(); it != _t.end(); it++) {
std::cout << "Step" << std::endl;
for (auto it = _t.begin(); it != _t.end(); ++it) {
std::cout << "Reverse Pass Iteration." << std::endl;
}


Expand Down

0 comments on commit 05a70f1

Please sign in to comment.