Skip to content

Commit

Permalink
check ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits committed Aug 15, 2023
1 parent 8a1a524 commit 34b1d9d
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 @@ -93,10 +93,10 @@ void workspace::learn(example& ec)
{
VW::LEARNER::require_singleline(l)->predict(ec);
VW::polyprediction saved_prediction;
VW::move_pred_to(ec.pred, saved_prediction, l->get_output_prediction_type());
new (&ec.pred) VW::polyprediction();
// VW::move_pred_to(ec.pred, saved_prediction, l->get_output_prediction_type());
// new (&ec.pred) VW::polyprediction();
VW::LEARNER::require_singleline(l)->learn(ec);
VW::move_pred_to(saved_prediction, ec.pred, l->get_output_prediction_type());
// VW::move_pred_to(saved_prediction, ec.pred, l->get_output_prediction_type());
}
}
}
Expand Down

0 comments on commit 34b1d9d

Please sign in to comment.