We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e5ba69 commit 9c09bc1Copy full SHA for 9c09bc1
auto_tuning.c
@@ -72,7 +72,7 @@ is_stable(double *elems, int nelems)
72
last = elems[nelems - 1];
73
74
return (est * (1. + auto_tuning_convergence_error) > last || est + auto_tuning_convergence_error > last) &&
75
- (est * (1. - auto_tuning_max_error) < last || est - auto_tuning_max_error < last);
+ (est * (1. - auto_tuning_convergence_error) < last || est - auto_tuning_convergence_error < last);
76
}
77
78
/*
0 commit comments