Skip to content

Commit 0743c99

Browse files
committed
Update attendance
1 parent 2553f0b commit 0743c99

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

_data/meetings/2023/07/attendance.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"Tim Thompson","Cornelis Networks","0","1"
1818
"Brian Smith","Cornelis Networks","0","1"
1919
"Martin Schulz","Technical University of Munich","0","1"
20-
"Maria Garzaran","Intel Corporation","0","-1"
20+
"Maria Garzaran","Intel Corporation","0","1"
2121
"Rolf Rabenseifner","HLRS, University of Stuttgart","0","1"
2222
"Jeff Hammond","NVIDIA","0","-1"
2323
"Edgar Gabriel","AMD","0","1"
@@ -40,7 +40,7 @@
4040
"Purushotham V. Bangalore","University of Alabama","0","1"
4141
"Martin Ruefenacht","Leibniz Supercomputing Centre","0","1"
4242
"Brandon Cook","Lawrence Berkeley National Laboratory","0","1"
43-
"Pedram Alizadeh","AMD","0","-1"
43+
"Pedram Alizadeh","AMD","0","1"
4444
"William Okuno","HPE","0","1"
4545
"Julien Adam","ParaTools SAS","0","1"
4646
"Claudia Blaas-Schenner","VSC Research Center, TU Wien","0","1"

utils/generate_authors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def main():
2424
continue
2525

2626
for personData in data:
27-
if int(personData['attend']) != 1:
27+
if int(personData['attend']) == -1:
2828
continue
2929
person = dedup_names(personData['name'].strip())
3030
if person in attendeeList.keys():

utils/generate_rcm_reviewers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def main():
1414
for fileName in prevMeetings:
1515
data = list(csv.DictReader(open(fileName)))
1616
for personData in data:
17-
if int(personData['attend']) != 1:
17+
if int(personData['attend']) == -1:
1818
continue
1919
person = dedup_names(personData['name'].strip())
2020
if person in attendeeList.keys():

0 commit comments

Comments
 (0)