File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ <h1>Multi-Process Flame Graphs Viewer for LAMMPS</h1>
1414 < select id ="sortOrder ">
1515 < option value ="tgid_asc "> TGID (Asc)</ option >
1616 < option value ="tgid_desc "> TGID (Desc)</ option >
17- < option value ="similarity_desc "> Similarity (Desc - if available)</ option >
18- < option value ="similarity_asc "> Similarity (Asc - if available)</ option >
17+ <!--< option value="similarity_desc">Similarity (Desc - if available)</option>-- >
18+ <!--< option value="similarity_asc">Similarity (Asc - if available)</option>-- >
1919 </ select >
2020 < label for ="filterTgid "> Filter by TGID:</ label >
2121 < input type ="text " id ="filterTgid " placeholder ="Enter TGID... ">
@@ -111,9 +111,9 @@ <h1>Multi-Process Flame Graphs Viewer for LAMMPS</h1>
111111 tgidLink . textContent = `TGID: ${ proc . tgid } ` ;
112112 title . appendChild ( tgidLink ) ;
113113
114- if ( proc . similarityScore !== null ) {
115- title . innerHTML += ` (Similarity: ${ proc . similarityScore } )` ;
116- }
114+ // if (proc.similarityScore !== null) {
115+ // title.innerHTML += ` (Similarity: ${proc.similarityScore})`;
116+ // }
117117 itemDiv . appendChild ( title ) ;
118118
119119 const svgContainer = document . createElement ( 'div' ) ;
Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ def main():
107107 for proc_data in processes_data :
108108 current_tgid = proc_data ["tgid" ]
109109 current_stacks = tgid_to_stacks .get (current_tgid )
110- print (current_stacks )
111110 if (
112111 current_stacks is not None
113112 ): # Can be None if this tgid had no .folded
You can’t perform that action at this time.
0 commit comments