Skip to content

Commit 1e816ca

Browse files
fix streams
1 parent 2ffb75a commit 1e816ca

File tree

1 file changed

+1
-1
lines changed
  • icicle_v3/include/icicle/fields

1 file changed

+1
-1
lines changed

icicle_v3/include/icicle/fields/field.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ class Field
283283
add_limbs(const storage<NLIMBS>& xs, const storage<NLIMBS>& ys, storage<NLIMBS>& rs)
284284
{
285285
#ifdef __CUDA_ARCH__
286-
return add_sub_limbs_device<NLIMBS, false, CARRY_OUT>(xs, ys, rs);
286+
return add_sub_limbs_device<NLIMBS, false, CARRY_OUT>(xs, ys, rs);
287287
#else
288288
return host_math::template add_sub_limbs<NLIMBS, false, CARRY_OUT>(xs, ys, rs);
289289
#endif

0 commit comments

Comments
 (0)