Skip to content
Commit bf2db903 authored by Vincent Donnefort's avatar Vincent Donnefort
Browse files

wa_results_collector: remove unfiltered DataFrame loc access

Editing a DataFrame with loc but no filter is not optimum and is wasting a
lot of time compared to a simple column assignation.

E.g. for a PCMark run on a Pixel4:

 df.loc[:'foo'] = bar   # Up to 7 sec.
 df['foo'] = bar        # Less than 1 sec.
parent 561d7777
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment