Lines Matching +full:- +full:e
3 # Copyright (c) 2017-2026, Lawrence Livermore National Security, LLC and other CEED contributors.
4 # All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
6 # SPDX-License-Identifier: BSD-2-Clause
16 log_y = 0 # use log scale on the y-axis?
17 x_range = (1e1, 4e6) # plot range for the x-axis; comment out for auto
18 y_range = (0, 2e9) # plot range for the y-axis; comment out for auto
33 rcParams['font.sans-serif'].insert(0, 'Noto Sans')
34 rcParams['font.sans-serif'].insert(1, 'Open Sans')
51 test_short = test.strip().split()[0] + ' BP' + test.strip().split()[-1]
107 d = [[e[2], e[3]] for e in d if e[0] == sol_p]
110 min([e[1] for e in d if e[0] == nun]),
111 max([e[1] for e in d if e[0] == nun])]
112 for nun in set([e[0] for e in d])]
115 plot(d[:, 0], d[:, 2], 'o-', color=colors[i % cm_size],
118 plot(d[:, 0], d[:, 1], 'o-', color=colors[i])
131 d = [[e[2], e[3]] for e in d if e[0] == sol_p]
136 min([e[1] for e in d if e[0] == nun]),
137 max([e[1] for e in d if e[0] == nun])]
138 for nun in set([e[0] for e in d])]
140 plot(d[:, 0], d[:, 2], 's--', color=colors[i],
143 plot(d[:, 0], d[:, 1], 's--', color=colors[i])
152 plot(y / slope1, y, 'k--', label='%g iter/s' % (slope1 / vdim))
153 plot(y / slope2, y, 'k-', label='%g iter/s' % (slope2 / vdim))
182 print('\nsaving figure --> %s' % pdf_file)