dric2018 commited on
Commit
5a56649
verified
1 Parent(s): b39fc2a

Upload 2 files

Browse files
Files changed (2) hide show
  1. app.py +2 -1
  2. data.json +27 -4
app.py CHANGED
@@ -23,6 +23,7 @@ df = pd.DataFrame(flattened_data)
23
  def get_info(idx:int, df):
24
  name = df.loc[idx, "name"]
25
  country = df.loc[idx, "location_country"]
 
26
  n_gpus = df.loc[idx, "capacity_n_GPUs"]
27
  gpu_type = df.loc[idx, "capacity_GPU_type"]
28
  addr = df.loc[idx, "location_address"]
@@ -35,7 +36,7 @@ def get_info(idx:int, df):
35
  {name} - **{str(n_gpus)}x{gpu_type}**
36
  Overall Performance: **{capacity} petaFLOPS**
37
  ({last_update})
38
- {addr}
39
  """,
40
  # Website: {url}
41
  style={"white-space": "pre"}
 
23
  def get_info(idx:int, df):
24
  name = df.loc[idx, "name"]
25
  country = df.loc[idx, "location_country"]
26
+ city = df.loc[idx, "location_city"]
27
  n_gpus = df.loc[idx, "capacity_n_GPUs"]
28
  gpu_type = df.loc[idx, "capacity_GPU_type"]
29
  addr = df.loc[idx, "location_address"]
 
36
  {name} - **{str(n_gpus)}x{gpu_type}**
37
  Overall Performance: **{capacity} petaFLOPS**
38
  ({last_update})
39
+ {addr}, {city}
40
  """,
41
  # Website: {url}
42
  style={"white-space": "pre"}
data.json CHANGED
@@ -6,7 +6,7 @@
6
  "city": "Diamniadio",
7
  "coordinates": {"lat": 14.70721512041391, "lng": -17.419260299665588},
8
  "region": "West",
9
- "address": "Cit茅 du Savoir, Diamniadio, Dakar"
10
 
11
  },
12
  "type": "National HPC",
@@ -29,9 +29,9 @@
29
  "city": "Ben Guerir",
30
  "coordinates": {"lat": 32.217507573027476, "lng": -7.938512605642216},
31
  "region": "North",
32
- "address": "Mohammed VI Polytechnic University, Ben Guerir 43150"
33
  },
34
- "type": "National HPC",
35
  "status": "Live",
36
  "capacity": {
37
  "GPU_type": "A100",
@@ -51,7 +51,7 @@
51
  "CN": "CIV",
52
  "coordinates": {"lat": 5.358842210111155, "lng": -3.902231013281939},
53
  "region": "West",
54
- "address": "P么le Scientifique et d'Innovation de Bingerville (PSI), Abidjan"
55
 
56
  },
57
  "type": "National HPC",
@@ -111,5 +111,28 @@
111
  "website": "https://www.esb.tn/en"
112
  },
113
  "last_update": "2024"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  }
115
  ]
 
6
  "city": "Diamniadio",
7
  "coordinates": {"lat": 14.70721512041391, "lng": -17.419260299665588},
8
  "region": "West",
9
+ "address": "Cit茅 du Savoir"
10
 
11
  },
12
  "type": "National HPC",
 
29
  "city": "Ben Guerir",
30
  "coordinates": {"lat": 32.217507573027476, "lng": -7.938512605642216},
31
  "region": "North",
32
+ "address": "Mohammed VI Polytechnic University, 43150"
33
  },
34
+ "type": "University HPC",
35
  "status": "Live",
36
  "capacity": {
37
  "GPU_type": "A100",
 
51
  "CN": "CIV",
52
  "coordinates": {"lat": 5.358842210111155, "lng": -3.902231013281939},
53
  "region": "West",
54
+ "address": "P么le Scientifique et d'Innovation de Bingerville (PSI)"
55
 
56
  },
57
  "type": "National HPC",
 
111
  "website": "https://www.esb.tn/en"
112
  },
113
  "last_update": "2024"
114
+ },
115
+ {
116
+ "name": "Zuputo",
117
+ "location": {
118
+ "country": "Ghana",
119
+ "CN": "GHA",
120
+ "city": "Accra",
121
+ "coordinates": {"lat": 5.65479, "lng": 0.18954},
122
+ "region": "West",
123
+ "address": "West African Centre for Cell Biology of Infectious Pathogens (WACCBIP)"
124
+
125
+ },
126
+ "type": "University HPC",
127
+ "status": "Live",
128
+ "capacity": {
129
+ "GPU_type": "P100",
130
+ "n_GPUs": 12,
131
+ "pflops_performance": 0.224
132
+ },
133
+ "contact_info": {
134
+ "website": "https://www.waccbip.org/research/scientific-technology-systems/high-performance-computing#:~:text=,the%20ROCKS%20cluster%20distribution%20software"
135
+ },
136
+ "last_update": "2018"
137
  }
138
  ]