Skip to content

Commit

Permalink
7080: fixes after rebase to master
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmon committed Jun 21, 2024
1 parent 8ea2f1e commit 474aae2
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,20 +365,17 @@ template <typename FF_> class memImpl {
{
Avm_DECLARE_VIEWS(27);

auto tmp = (((-mem_skip_check_tag + FF(1)) * (-mem_rw + FF(1))) *
(((mem_r_in_tag - mem_tag) * (-mem_one_min_inv + FF(1))) - mem_tag_err));
auto tmp = ((((mem_tag * (-mem_skip_check_tag + FF(1))) * (-mem_rw + FF(1))) *
(((mem_r_in_tag - mem_tag) * (-mem_one_min_inv + FF(1))) - mem_tag_err)) -
FF(0));
tmp *= scaling_factor;
std::get<27>(evals) += tmp;
}
// Contribution 28
{
Avm_DECLARE_VIEWS(28);

<<<<<<< HEAD
auto tmp = (((-mem_tag_err + FF(1)) * mem_one_min_inv) - FF(0));
=======
auto tmp = ((mem_tag * (-mem_tag_err + FF(1))) * mem_one_min_inv);
>>>>>>> ed5b34d52f (7080: repair unit tests related to unitialized indirect memory in a MOV)
auto tmp = (((mem_tag * (-mem_tag_err + FF(1))) * mem_one_min_inv) - FF(0));
tmp *= scaling_factor;
std::get<28>(evals) += tmp;
}
Expand Down

0 comments on commit 474aae2

Please sign in to comment.