Skip to content

Commit 0e7a58a

Browse files
committed
comment out forward parameter pass in scalar mult because it is not needed, I think
1 parent 7367914 commit 0e7a58a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/atoms/affine/scalar_mult.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ static void forward(expr *node, const double *u)
3232

3333
/* call forward for param_source expr tree
3434
ex: broadcast(param) or promote(const)*/
35-
snode->param_source->forward(snode->param_source, NULL);
35+
// snode->param_source->forward(snode->param_source, NULL);
3636

3737
double a = snode->param_source->value[0];
3838

0 commit comments

Comments
 (0)