Skip to content

Commit

Permalink
comment out
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits committed Aug 15, 2023
1 parent 34b1d9d commit cae2640
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vowpalwabbit/core/src/global_data.cc
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ void workspace::learn(multi_ex& ec)
{
VW::LEARNER::require_multiline(l)->predict(ec);
VW::polyprediction saved_prediction;
VW::move_pred_to(ec[0]->pred, saved_prediction, l->get_output_prediction_type());
new (&ec[0]->pred) VW::polyprediction();
// VW::move_pred_to(ec[0]->pred, saved_prediction, l->get_output_prediction_type());
// new (&ec[0]->pred) VW::polyprediction();
VW::LEARNER::require_multiline(l)->learn(ec);
VW::move_pred_to(saved_prediction, ec[0]->pred, l->get_output_prediction_type());
// VW::move_pred_to(saved_prediction, ec[0]->pred, l->get_output_prediction_type());
}
}
}
Expand Down

0 comments on commit cae2640

Please sign in to comment.