Spaces:
Running
Running
Fix GPU precision label in performance plot
Browse files- plot_results.py +1 -1
plot_results.py
CHANGED
@@ -135,7 +135,7 @@ def create_performance_plot(csv_path='benchmark_results.csv', metadata_path='met
|
|
135 |
|
136 |
# Add vertical line for consumer GPU budget
|
137 |
plt.axvline(x=12, color='gray', linestyle=':', label='Consumer-budget GPU limit', ymin=-0.15, clip_on=False)
|
138 |
-
plt.text(12, -0.15, 'Consumer-budget\nGPU (24GB) limit\nin
|
139 |
horizontalalignment='center', verticalalignment='top',
|
140 |
transform=plt.gca().get_xaxis_transform())
|
141 |
|
|
|
135 |
|
136 |
# Add vertical line for consumer GPU budget
|
137 |
plt.axvline(x=12, color='gray', linestyle=':', label='Consumer-budget GPU limit', ymin=-0.15, clip_on=False)
|
138 |
+
plt.text(12, -0.15, 'Consumer-budget\nGPU (24GB) limit\nin half precision',
|
139 |
horizontalalignment='center', verticalalignment='top',
|
140 |
transform=plt.gca().get_xaxis_transform())
|
141 |
|