Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
bec7a74
Added NWChem parser for executions
wyjeong Mar 13, 2019
950ea9f
Added request for executions
wyjeong Mar 13, 2019
9fdf2c7
Added calculation of layout from executions
wyjeong Mar 13, 2019
bd93b48
Added tree query by eid
wyjeong Mar 14, 2019
10eb074
Created tree by eid
wyjeong Mar 14, 2019
4dd963d
Fixed tree request by eid
wyjeong Mar 17, 2019
648624a
Added stat request in NWChem parser
wyjeong Mar 17, 2019
8736518
Refined updating stat information
wyjeong Mar 17, 2019
39c61d2
Merge pull request #28 from wyjeong/feature/executions
celiafish Mar 19, 2019
10d16da
Modified interface with AD
Mar 27, 2019
6f26a83
Added stream simulator and rank generator
Mar 27, 2019
2c75cd1
Fixed checking execution id
Mar 27, 2019
69f166f
Added additional abnormal/regular information in scatterplot legend
Mar 27, 2019
5ec1a08
Added thread safe code when setting function dict and event types
Mar 27, 2019
f8e01ea
Skipped unfound children when creating call stack tree
Mar 27, 2019
58bf942
Assigned global unique id for execution per rank
Mar 27, 2019
a07967b
Added/fixed integration bugs
Mar 27, 2019
9b36297
Bug fix for global unique id of children executions
Mar 27, 2019
477195b
Modified updating stat information
Mar 27, 2019
28eb66d
Added checking if func_dict type is given by dict
Apr 2, 2019
c4862bc
Modified prev test cases / Added new unit test
Apr 2, 2019
1e7611a
Added new test data for multiple streaming per rank
Apr 2, 2019
e6325f3
Added async adding/fetching module for data frame
Apr 2, 2019
aca7776
Modified module importing in unit test
Apr 3, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
from web import web_app
import sys

if len(sys.argv) == 2:
try:
log = open(sys.argv[1], 'w')
sys.stdout = sys.stderr = log
except IOError:
pass

port = 5000 # replace 5000 with your preference
web_app.run(host='0.0.0.0', port=port, threaded=True, use_reloader=False)
1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/broken/reset.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/broken/trace.0.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/et.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/function.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/reset.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/trace.1.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/trace.2.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/trace.3.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/trace.4.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/trace.5.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/trace.6.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/trace.7.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/trace.8.json

This file was deleted.

1 change: 0 additions & 1 deletion test/data/2x2x2/2cores/trace.9.json

This file was deleted.

Loading