Skip to content

Commit

Permalink
fix streams
Browse files Browse the repository at this point in the history
  • Loading branch information
HadarIngonyama authored and yshekel committed Aug 29, 2024
1 parent 69dd970 commit a16c86b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icicle/include/icicle/fields/field.h
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ class Field
add_limbs(const storage<NLIMBS>& xs, const storage<NLIMBS>& ys, storage<NLIMBS>& rs)
{
#ifdef __CUDA_ARCH__
return add_sub_limbs_device<NLIMBS, false, CARRY_OUT>(xs, ys, rs);
return add_sub_limbs_device<NLIMBS, false, CARRY_OUT>(xs, ys, rs);
#else
return host_math::template add_sub_limbs<NLIMBS, false, CARRY_OUT>(xs, ys, rs);
#endif
Expand Down

0 comments on commit a16c86b

Please sign in to comment.