(path)
| 117 | |
| 118 | def plot_function_scheduling_latency(): |
| 119 | def get_per_invocation(path): |
| 120 | df = pd.read_csv(path) |
| 121 | |
| 122 | df['responseTime'] -= df['actualDuration'] |
| 123 | df['responseTime'] /= 1000 # to ms |
| 124 | |
| 125 | return cdf(df, 'responseTime') |
| 126 | |
| 127 | def get_per_function(path): |
| 128 | df = pd.read_csv(path) |
no test coverage detected