Lines Matching refs:log

28                                     testutils::OutputFileStream &log) {  in run_diff_in_range()  argument
43 log << " Input: " << bitsX << ", " << bitsY << " (" << x << ", " in run_diff_in_range()
61 UIntType N, testutils::OutputFileStream &log) { in run_perf_in_range() argument
86 log << "-- My function --\n"; in run_perf_in_range()
87 log << " Total time : " << timer.nanoseconds() << " ns \n"; in run_perf_in_range()
88 log << " Average runtime : " << my_average << " ns/op \n"; in run_perf_in_range()
89 log << " Ops per second : " in run_perf_in_range()
103 log << "-- Average runtime ratio --\n"; in run_perf_in_range()
104 log << " Mine / Other's : " << my_average / other_average << " \n"; in run_perf_in_range()
108 testutils::OutputFileStream log(logFile); in run_perf()
109 log << " Performance tests with inputs in denormal range:\n"; in run_perf()
111 /* endingBit= */ FPBits::MAX_SUBNORMAL, 1'000'001, log); in run_perf()
112 log << "\n Performance tests with inputs in normal range:\n"; in run_perf()
114 /* endingBit= */ FPBits::MAX_NORMAL, 100'000'001, log); in run_perf()
115 log << "\n Performance tests with inputs in normal range with exponents " in run_perf()
119 /* endingBit= */ FPBits(T(0x1.0p+10)).uintval(), 10'000'001, log); in run_perf()
124 testutils::OutputFileStream log(logFile); in run_diff()
125 log << " Diff tests with inputs in denormal range:\n"; in run_diff()
128 /* endingBit= */ FPBits::MAX_SUBNORMAL, 1'000'001, log); in run_diff()
129 log << "\n Diff tests with inputs in normal range:\n"; in run_diff()
132 /* endingBit= */ FPBits::MAX_NORMAL, 100'000'001, log); in run_diff()
133 log << "\n Diff tests with inputs in normal range with exponents " in run_diff()
137 /* endingBit= */ FPBits(T(0x1.0p+10)).uintval(), 10'000'001, log); in run_diff()
139 log << "Total number of differing results: " << diffCount << '\n'; in run_diff()