djstrong commited on
Commit
288816d
·
1 Parent(s): f820897

Fix GPU precision label in performance plot

Browse files
Files changed (1) hide show
  1. 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 full precision',
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