Skip to content

Commit

Permalink
Fix bop issue with constants
Browse files Browse the repository at this point in the history
  • Loading branch information
rtajan authored and kouchy committed Dec 4, 2024
1 parent 34a9179 commit 217add3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/Module/Stateful/Binaryop/Binaryop.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Binaryop<TI, TO, BOP>::Binaryop(const size_t n_in0, const size_t n_in1)
auto p2_in = this->template create_socket_in<TI>(p2, "in", n_in0);
auto p2_fwd = this->template create_socket_fwd<TI>(p2, "fwd", n_in1);

if (n_in1 == 1)
if (n_in0 == 1)
{
this->create_codelet(
p2,
Expand Down

0 comments on commit 217add3

Please sign in to comment.