Skip to content

Commit f18be58

Browse files
JIT: Decrease Gauss-Seidel stop residual (#115150)
Fixes #115122.
1 parent 29acb2f commit f18be58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/jit/fgprofilesynthesis.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1186,7 +1186,7 @@ void ProfileSynthesis::GaussSeidelSolver()
11861186
weight_t relResidual = 0;
11871187
weight_t oldRelResidual = 0;
11881188
weight_t eigenvalue = 0;
1189-
weight_t const stopRelResidual = 0.002;
1189+
weight_t const stopRelResidual = 0.001;
11901190
BasicBlock* residualBlock = nullptr;
11911191
BasicBlock* relResidualBlock = nullptr;
11921192
const FlowGraphDfsTree* const dfs = m_loops->GetDfsTree();

0 commit comments

Comments
 (0)