Skip to content

Commit

Permalink
fix comms between gsts
Browse files Browse the repository at this point in the history
  • Loading branch information
pfandzelter committed Apr 18, 2024
1 parent a0649b3 commit e2f8746
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 133,238 deletions.
3 changes: 0 additions & 3 deletions celestial/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -939,9 +939,6 @@ def _numba_update_paths(

for x1 in g_valid_links[g1, : g_valid_link_lens[g1]]:
for x2 in g_valid_links[g2, : g_valid_link_lens[g2]]:
if gst_links_array[x2]["gst"] != g2:
continue

_s1 = gst_links_array[x1]["sat"]
_s2 = gst_links_array[x2]["sat"]

Expand Down
1 change: 1 addition & 0 deletions test/system/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
out/
output/results.csv
host.log
coordinator.log
8 changes: 5 additions & 3 deletions test/system/cleanresults.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
raise Exception("invalid filename")

if parts[0] == "gst":
a_shell = "-1"
a_shell = "gst"

else:
# first part is a_shell
Expand Down Expand Up @@ -80,8 +80,10 @@
try:
int(parts[1])
int(parts[2])
except:
continue
except Exception:
# or maybe its a gst
if parts[1] != "gst":
continue

# write the line!
out_file.write(f"{a_shell},{a_sat},{line}\n")
Expand Down
Binary file modified test/system/output/ecdf-inv.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/system/output/ecdf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/system/output/heatmap-inv.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/system/output/heatmap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/system/output/lineplot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
66,597 changes: 0 additions & 66,597 deletions test/system/output/results.csv

This file was deleted.

66,635 changes: 0 additions & 66,635 deletions test/system/results.csv

This file was deleted.

0 comments on commit e2f8746

Please sign in to comment.