MCPcopy Create free account
hub / github.com/eth-easl/dirigent / getTraces

Function getTraces

scripts/plotting/common.py:38–46  ·  view source on GitHub ↗
(load, rootPath)

Source from the content-addressed store, hash-verified

36
37
38def getTraces(load, rootPath):
39
40 joined_list = glob.glob(f'{rootPath}/cold_start_trace_{load}*.csv')
41 cpTrace = pd.concat(map(pd.read_csv, joined_list), ignore_index=True)
42
43 joined_list = glob.glob(f'{rootPath}/proxy_trace_{load}*.csv')
44 proxyTrace = pd.concat(map(pd.read_csv, joined_list), ignore_index=True)
45
46 return cpTrace, proxyTrace
47
48
49def getResult(load, rootPath):

Callers 1

getResultFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected