Skip to content

Commit 163cf98

Browse files
Increase default maxRcpRawObjAccessRatio from 13.5 to 20.0 (trilinos#8648, trilinos#13728)
That should be high enough to avoid every random failure of this check ever observed in Trilinos PR testing. It is debatable if a test such as this should be run in all builds or in just dedicated performance builds. (The default timing ratios are very loose.) We just want to make sure these tests are not broken in every build so that this test will be able to run in performance builds. Signed-off-by: Roscoe A. Bartlett <[email protected]>
1 parent 9b8ef85 commit 163cf98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/teuchos/core/test/MemoryManagement/RCP_Performance_UnitTests.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ using Teuchos::TabularOutputter;
2626
double relCpuSpeed = 1e-2;
2727
int maxArraySize = 10000;
2828
double maxRcpRawCreateDestroyRatio = 10.0;
29-
double maxRcpRawAdjustRefCountRatio = 100.0;
29+
double maxRcpRawAdjustRefCountRatio = 100.0; // see trilinos/Trilinos#6429
3030
#ifdef HAVE_TEUCHOSCORE_CXX11
3131
double maxRcpSpAdjustRefCountRatio = 5.0;
3232
#endif
33-
double maxRcpRawObjAccessRatio = 13.5;
33+
double maxRcpRawObjAccessRatio = 20.0; // See trilinos/Trilinos#13728
3434

3535
const int intPrec = 8;
3636
const int dblPrec = 6;

0 commit comments

Comments
 (0)