Skip to content

Commit

Permalink
Merge branch 'feature-tuneParm'
Browse files Browse the repository at this point in the history
  • Loading branch information
GammaPi committed Dec 9, 2022
2 parents b06d431 + 56569d5 commit ba5c9e5
Show file tree
Hide file tree
Showing 39 changed files with 1,782 additions and 675 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
[submodule "Analyzer/ScalerRun/lib/yamlcpp_0_7_0"]
path = Analyzer/ScalerRun/lib/yamlcpp_0_7_0
url = https://github.com/jbeder/yaml-cpp.git
[submodule "benchmarktookit"]
path = benchmarktookit
url = ssh://git@code.xttech.top:6081/masslab/benchmarktookit.git
7 changes: 7 additions & 0 deletions .idea/Scaler.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Analyzer/PyVisualizer/src/V2/DataAggregator_V2.py
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ def main():
# they can refuse it and the aggregator will use a default file path set to finalFold.folded in the repo
root = tk.Tk()
root.withdraw()
fileName = filedialog.askopenfilename()
fileName = ''

# If an input file was selected, then we will ask them for an output file. They can opt to stop the program
# By directly closing the file dialog twice in a row.
Expand All @@ -689,7 +689,7 @@ def main():
if fileName == '':
# If no file name then just default to opening a file in the repo
# print(True)
fileName = "C:/Users/John/PycharmProjects/Scaler/libAnalyzer/tests/PerfTests/finalFold.folded"
fileName = "/media/umass/datasystem/steven/Downloads/performancetest20221124/2022-11-27_19-31-45-Perf-4000/Application.benchmarksuite.parsec.parsec3_0.blackscholes_0/Perf-Artifects/out.stacks-folded"
# outFileName = "perfMemcachedData_V2.json"
outFileName = "perfMemcachedData_V2_nokernelinlined.json"
# outFileName = "perfMemcachedData_V2_noinlined.json"
Expand All @@ -709,12 +709,12 @@ def main():
# We will handle the data differently depending on if the user wants to use the timing data
# If "y" is entered, then we will use the time stamp info and sample data,
# if not then we will use sample data by default
timestampInput = input("Use Timestamps? y/n Default is n: ")
timestampInput = 'n'
if timestampInput == "y":
# print(timestampInput)
useTimestamps = True

inlinedInput = input("Attribute Inlined functions to last known library? y/n Default is n: ")
inlinedInput = 'n'
if inlinedInput == "y":
# print(attributeInline)
attributeInline = True
Expand Down
49 changes: 33 additions & 16 deletions Analyzer/PyVisualizer/src/V3/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

195 changes: 0 additions & 195 deletions Analyzer/PyVisualizer/src/V3/AnalyzeAPIInvocationDistribution.py

This file was deleted.

Loading

0 comments on commit ba5c9e5

Please sign in to comment.