├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── _config.yml ├── asplos17-pc.txt ├── atc17-pc.txt ├── checkpc.py ├── dblp └── __init__.py ├── eurosys17-pc.txt ├── fast18-pc.txt ├── isca17-pc.txt ├── isca19-pc.txt ├── isca19-pcpapers.txt ├── mobicom14-pc.txt ├── mobicom15-pc.txt ├── mobicom16-pc.txt ├── mobicom17-pc.txt ├── nsdi15-pc.txt ├── nsdi16-pc.txt ├── nsdi17-pc.txt ├── osdi16-pc.txt ├── pldi17-pc.txt ├── popl17-pc.txt ├── popl18-pc.txt ├── requirements.txt ├── setup.py ├── sigcomm14-pc.txt ├── sigcomm15-pc.txt ├── sigcomm16-pc.txt ├── sigcomm16-pcpapers.txt ├── sigcomm17-pc.txt ├── sigmod17-pc.txt ├── sosp13-pc.txt ├── sosp15-pc.txt ├── sosp17-pc.txt └── vldb17-pc.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | 3 | # C extensions 4 | *.so 5 | 6 | # Packages 7 | *.egg 8 | *.egg-info 9 | dist 10 | build 11 | eggs 12 | parts 13 | bin 14 | var 15 | sdist 16 | develop-eggs 17 | .installed.cfg 18 | lib 19 | lib64 20 | 21 | # Installer logs 22 | pip-log.txt 23 | 24 | # Unit test / coverage reports 25 | .coverage 26 | .tox 27 | nosetests.xml 28 | 29 | # Translations 30 | *.mo 31 | 32 | # Mr Developer 33 | .mr.developer.cfg 34 | .project 35 | .pydevproject 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Counting PC-Authored Papers ## 2 | 3 | This script relies on DBLP to pull the papers related to a given 4 | conference and year. There are three things the user needs to set for 5 | each conference. Let me use USENIX ATC as an example. 6 | 7 | 1. The conference name as seen by DBLP. For example, for ATC this is 8 | `usenix`. 9 | 10 | 2. The `venue` as seen by DBLP. Each paper belonging to 11 | this conference will have this venue set. For example, for ATC this is 12 | `USENIX Annual Technical Conference`. 13 | 14 | 3. The year of the conference. 15 | 16 | You might need to poke around DBLP a bit to get these values. For 17 | example, if you go to 18 | [http://dblp.uni-trier.de/search/publ/api?q=/conf/eurosys/2017](http://dblp.uni-trier.de/search/publ/api?q=/conf/eurosys/2017), 19 | you can see what the `venue` and conference name parameters are for Eurosys. 20 | 21 | ### PC Information ### 22 | 23 | Unfortunately, there is no automated way to get the program committee 24 | information. You need to manually get the list of PC members and put 25 | them in a text file. You then process the list of PC members and add 26 | them to the `pc[year][conf]` list in `checkpc.py`. 27 | 28 | An effort must be made to make the names of the PC members identical 29 | to how they appear on DBLP. For example, if an author is called "A 30 | B. C" on DBLP, their PC entry must be changed to reflect that (often 31 | it will be just "A C" in the PC list). 32 | 33 | For authors with common names, their DBLP name might have a 34 | number. For example, "A B 001". The PC entry will have to changed to 35 | reflect the correct author. 36 | 37 | ### Checking PC Authorship ### 38 | 39 | After parsing the PC list and populating `pc[year][conf]` you must 40 | call `check_pc(conf, year, DBLP-conf-venue)`. `conf` and 41 | `DBLP-conf-venue` must match what DBLP sees for the conference as 42 | mentioned above. The `conf` used in `pc` and `check_pc` must match. 43 | 44 | `check_pc` will then print out the total number of papers, the number 45 | of papers with at least one PC member as author, and the percentage of 46 | total papers authored by PC members. 47 | 48 | ### Sample Output ### 49 | 50 | ``` 51 | PC Paper # 1 52 | Title: ABC 53 | PC Member who is author: DEF 54 | 55 | ConfConf 2019 56 | Total papers: 62 57 | PC Papers: 18 58 | Percentage: 29.0 59 | ``` 60 | 61 | ### Caveats ### 62 | 63 | This scripts works to the extent the names of the program committee 64 | match their DBLP name for their papers. As such, it is likely it does 65 | not work well for authors with unicode characters in their names, and 66 | authors with common names. Thus, the results of this script are a 67 | lower bound on the number of PC-authored papers in the conference. 68 | 69 | ### Results ### 70 | 71 | Results for a number of recent conferences, sorted by % of 72 | PC-Papers. Each PC-Authored paper is only counted once. 73 | 74 | | Conference | Year | Total Papers | PC-Papers | % of PC-Papers | 75 | |-------------|:-------------:| -----:|----:|----:| 76 | POPL | 2017 | 64 | 6 | 9.4 | 77 | ASPLOS | 2017 | 56 | 7 | 12.5 | 78 | CoNEXT | 2015 | 40 | 5 | 12.50 79 | PLDI | 2018 | 55 | 8 | 14.5 | 80 | ATC | 2017 | 63 | 10 | 15.9 | 81 | PLDI | 2017 | 47 | 8 | 17.0 | 82 | Eurosys | 2017 | 41 | 7 | 17.1 | 83 | CoNEXT | 2017 | 39 | 7 | 17.95 84 | NSDI | 2015 | 42 | 8 | 19.1 | 85 | CoNEXT | 2014 | 36 | 7 | 19.44 86 | CoNEXT | 2013 | 30 | 6 | 20.00 | 87 | NSDI | 2016 | 44 | 9 | 20.4 | 88 | OSDI | 2016 | 47 | 10 | 21.3 | 89 | NSDI | 2017 | 46 | 10 | 21.7 | 90 | SOSP | 2015 | 30 | 7 | 23.3 | 91 | CoNEXT | 2012 | 32 | 9 | 28.12 | 92 | ISCA | 2019 | 62 | 18 | 29.0 | 93 | CoNEXT | 2016 | 35 | 11 | 31.43 94 | ISCA | 2017 | 54 | 17 | 31.5 | 95 | FAST | 2018 | 24 | 8 | 33.3 | 96 | SIGMOD | 2017 | 102 | 35 | 34.3 | 97 | Mobicom | 2014 | 37 | 13 | 35.1 | 98 | SOSP | 2017 | 39 | 14 | 35.9 | 99 | SOSP | 2013 | 30 | 11 | 36.7 | 100 | Mobicom | 2017 | 35 | 13 | 37.1 | 101 | SIGCOMM | 2017 | 36 | 14 | 38.9 | 102 | SIGCOMM | 2014 | 46 | 18 | 39.1 | 103 | Mobicom | 2015 | 38 | 15 | 39.5 | 104 | SIGCOMM | 2015 | 40 | 18 | 45.0 | 105 | Mobicom | 2016 | 31 | 17 | 54.8 | 106 | SIGCOMM | 2016 | 39 | 22 | 56.4 | 107 | 108 | Seperately showing different conferences, sorted by year. 109 | 110 | | Conference | Year | Total Papers | PC-Papers | % of PC-Papers | 111 | |-------------|:-------------:| -----:|----:|----:| 112 | NSDI | 2015 | 42 | 8 | 19.1 | 113 | NSDI | 2016 | 44 | 9 | 20.4 | 114 | NSDI | 2017 | 46 | 10 | 21.7 | 115 | 116 | | Conference | Year | Total Papers | PC-Papers | % of PC-Papers | 117 | |-------------|:-------------:| -----:|----:|----:| 118 | PLDI | 2017 | 47 | 8 | 17.0 | 119 | PLDI | 2018 | 55 | 8 | 14.5 | 120 | 121 | | Conference | Year | Total Papers | PC-Papers | % of PC-Papers | 122 | |-------------|:-------------:| -----:|----:|----:| 123 | SIGCOMM | 2014 | 46 | 18 | 39.1 | 124 | SIGCOMM | 2015 | 40 | 18 | 45.0 | 125 | SIGCOMM | 2016 | 39 | 22 | 56.4 | 126 | SIGCOMM | 2017 | 36 | 14 | 38.9 | 127 | 128 | | Conference | Year | Total Papers | PC-Papers | % of PC-Papers | 129 | |-------------|:-------------:| -----:|----:|----:| 130 | Mobicom | 2014 | 37 | 13 | 35.1 | 131 | Mobicom | 2015 | 38 | 15 | 39.5 | 132 | Mobicom | 2016 | 31 | 17 | 54.8 | 133 | Mobicom | 2017 | 35 | 13 | 37.1 | 134 | 135 | | Conference | Year | Total Papers | PC-Papers | % of PC-Papers | 136 | |-------------|:-------------:| -----:|----:|----:| 137 | SOSP | 2013 | 30 | 11 | 36.7 | 138 | SOSP | 2015 | 30 | 7 | 23.3 | 139 | SOSP | 2017 | 39 | 14 | 35.9 | 140 | 141 | Conference | Year | Total Papers | PC-Papers | % of PC-Papers | 142 | |-------------|:-------------:| -----:|----:|----:| 143 | CoNEXT | 2012 | 32 | 9 | 28.12 144 | CoNEXT | 2013 | 30 | 6 | 20.00 145 | CoNEXT | 2014 | 36 | 7 | 19.44 146 | CoNEXT | 2015 | 40 | 5 | 12.50 147 | CoNEXT | 2016 | 35 | 11 | 31.43 148 | CoNEXT | 2017 | 39 | 7 | 17.95 149 | 150 | 151 | PLDI 2018 information contributed by the PC Chair, Dan Grossman. 152 | CoNEXT information contributed by Marco Mellia and Roberto Marturano. 153 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal -------------------------------------------------------------------------------- /asplos17-pc.txt: -------------------------------------------------------------------------------- 1 | John Carter,IBM 2 | Jade Alglave, Microsoft Research Cambridge and University College London 3 | David Andersen, Carnegie Mellon University 4 | Yungang Bao, ICT - Chinese Academy of Sciences 5 | Muli Ben-Yehuda, LightBits Labs 6 | Ricardo Bianchini, Microsoft Research 7 | Haibo Chen, Shanghai Jaitong University 8 | Liqun Cheng, Google 9 | Wenguang Chen, Tsinghua University 10 | Fred Chong, University of Chicago 11 | Eric Chung, Microsoft Research 12 | John Criswell, University of Rochester 13 | Christina Delimitrou, Cornell University 14 | Angela Demke Brown, University of Toronto 15 | Chen Ding, University of Rochester 16 | Lieven Eeckhout, Ghent University 17 | Elmootazbellah Elnozay, King Abdullah University of Science and Technology (Saudi Arabia) 18 | Natalie Enright Jerger, University of Toronto 19 | Chris Fletcher, Massachusetts Institute of Technology 20 | Jason Flinn, University of Michigan 21 | Ada Gavrilovska, Georgia Institute of Technology 22 | Qi Guo, ICT, Cambricon Tech. 23 | Sudhanva Gurumurthi, IBM 24 | Kim Hazelwood, Facebook 25 | Wilson Hsieh, Google 26 | Hillery Hunter, IBM Research 27 | Martha Kim, Columbia University 28 | Benjamin Lee, Duke University 29 | Shan Lu, University of Chicago 30 | Srilatha Manne, Cavium 31 | Tipp Moseley, Google 32 | David Nellans, Nvidia 33 | Mark Oskin, University of Washington 34 | John Regehr, University of Utah 35 | Adrian Sampson, Cornell University 36 | Vivek Sarkar, Rice University 37 | Marc Shapiro, INRIA 38 | Xipeng Shen, North Carolina State University 39 | Arrvindh Shriraman, Simon Fraser University 40 | Armando Solar-Lezama, Massachusetts Institute of Technology 41 | Yan Solihin, North Carolina State University 42 | Karin Strauss, Microsoft Research and University of Washington 43 | Michael Swift, University of Wisconsin 44 | Lingjia Tang, University of Michigan 45 | Mohit Tiwari, University of Texas - Austin 46 | Haris Volos, Hewlett-Packard Enterprise 47 | Emmett Witchel, University of Texas - Austin 48 | Ming Wu, Microsoft Research 49 | Guoqing Xu, University of California - Irvine 50 | Lidong Zhou, Microsoft Research 51 | -------------------------------------------------------------------------------- /atc17-pc.txt: -------------------------------------------------------------------------------- 1 | Rachit Agarwal, Cornell University 2 | Nadav Amit, VMware Research Group 3 | Mona Attariyan, Google 4 | Sorav Bansal, Indian Institute of Technology Delhi 5 | Adam Bates, University of Illinois at Urbana-Champaign 6 | Justin Cappos, New York University Tandon School of Engineering 7 | Rong Chen, Shanghai Jiao Tong University 8 | Mihai Christodorescu, Qualcomm Research 9 | Charlie Curtsinger, Grinnell College 10 | Christina Delimitrou, Cornell University 11 | Fred Douglis, Dell EMC 12 | Eric Eide, University of Utah 13 | Ittay Eyal, Cornell University 14 | Ada Gavrilovska, Georgia Institute of Technology 15 | Vishakha Gupta, Intel Labs 16 | Michio Honda, NEC Laboratories Europe 17 | Yu Hua, Huazhong University of Science and Technology 18 | Peng (Ryan) Huang, Microsoft Research and Johns Hopkins University 19 | Taesoo Kim, Georgia Institute of Technology 20 | Eddie Kohler, Harvard University 21 | Jean-Pierre Lozi, Université Nice Sophia Antipolis 22 | Gilles Muller, Inria 23 | Donald E. Porter, University of North Carolina at Chapel Hill and 24 | Fortanix 25 | Christopher J. Rossbach, The University of Texas at Austin and VMware 26 | Research Group 27 | Ji-Yong Shin, Yale University 28 | Liuba Shrira, Brandeis University 29 | Nisha Talagala, Parallel Machines 30 | Chunqiang Tang, Facebook 31 | Theodore Ts'o, Google 32 | Dan Tsafrir, Technion—Israel Institute of Technology 33 | Dan Williams, IBM T.J. Watson Research Center 34 | David Wolinsky, Facebook 35 | Timothy Wood, George Washington University 36 | -------------------------------------------------------------------------------- /checkpc.py: -------------------------------------------------------------------------------- 1 | import datetime 2 | import dblp 3 | import operator 4 | import pickle 5 | from collections import defaultdict 6 | 7 | pc = {} 8 | pc["2015"] = defaultdict(list) 9 | pc["2016"] = defaultdict(list) 10 | pc["2017"] = defaultdict(list) 11 | pc["2018"] = defaultdict(list) 12 | pc["2019"] = defaultdict(list) 13 | 14 | sosp = {} 15 | sosp_pc = defaultdict(list) 16 | #pc["2017"]["sosp"] = sosp_pc 17 | eurosys_pc = defaultdict(list) 18 | 19 | def clean_author_name(x): 20 | x = x.encode('ascii', 'ignore') # ignore problems due to unicode 21 | # middle names and initials often cause problems, so get rid of those 22 | s = x.split(' ') 23 | # ignore the DBLP number at the end if there is one 24 | if s[-1].isdigit(): 25 | x = s[0] + " " + s[-2] 26 | else: 27 | x = s[0] + " " + s[-1] 28 | return x 29 | 30 | for x in open("isca19-pc.txt", 'r'): 31 | xx = x.split(",") 32 | #print xx[0] 33 | pc["2019"]["isca"].append(xx[0]) 34 | 35 | for x in open("sosp17-pc.txt", 'r'): 36 | xx = x.split(",") 37 | #print xx[0] 38 | sosp_pc[2017].append(xx[0]) 39 | pc["2017"]["sosp"].append(xx[0]) 40 | 41 | for x in open("eurosys17-pc.txt", "r"): 42 | xx = x.split(",") 43 | #print xx[0] 44 | eurosys_pc[2017].append(xx[0]) 45 | pc["2017"]["eurosys"].append(xx[0]) 46 | 47 | for x in open("fast18-pc.txt", "r"): 48 | xx = x.split(",") 49 | #print xx[0] 50 | pc["2018"]["fast"].append(xx[0]) 51 | 52 | for x in open("osdi16-pc.txt", "r"): 53 | xx = x.split(",") 54 | #print xx[0] 55 | pc["2016"]["osdi"].append(xx[0]) 56 | 57 | for x in open("atc17-pc.txt", "r"): 58 | xx = x.split(",") 59 | #print xx[0] 60 | pc["2017"]["usenix"].append(xx[0]) 61 | 62 | for x in open("popl18-pc.txt", "r"): 63 | xx = x.split(",") 64 | #print xx[0] 65 | pc["2018"]["popl"].append(xx[0]) 66 | 67 | # special for popl 17, just use names as is 68 | for x in open("popl17-pc.txt", "r"): 69 | pc["2017"]["popl"].append(x.strip()) 70 | 71 | for x in open("pldi17-pc.txt", "r"): 72 | pc["2017"]["pldi"].append(x.strip()) 73 | 74 | for x in open("sigcomm17-pc.txt", "r"): 75 | pc["2017"]["sigcomm"].append(x.strip()) 76 | 77 | for x in open("sigcomm18-pc.txt", "r"): 78 | pc["2018"]["sigcomm"].append(x.strip()) 79 | 80 | total_count = 0 81 | pc_count = 0 82 | 83 | def check_pc(conf, year, conf_short): 84 | total_count = 0 85 | pc_count = 0 86 | conf = conf.lower() 87 | a = dblp.getvenueauthorsbypaper("/conf/" + conf.lower() + "/" + str(year), conf_short) 88 | for x in a: 89 | total_count += 1 90 | for xxx in x: 91 | for xx in xxx: 92 | if xx == "Yuanyuan Zhou 0001": 93 | if "Yuanyuan Zhou" in pc[year][conf]: 94 | pc_count += 1 95 | print "YY Zhou", x 96 | continue 97 | if clean_author_name(xx) in pc[year][conf]: 98 | pc_count += 1 99 | #print xx, x, pc_count 100 | print "PC Paper #", pc_count 101 | print "Title: ", x[0][0] 102 | print "PC Member who is author:", clean_author_name(xx) 103 | print 104 | break 105 | 106 | print conf_short, year 107 | print "Total papers: ", total_count 108 | print "PC Papers: ", pc_count 109 | print "Percentage: ", round(100 * pc_count/total_count, 1) 110 | 111 | #check_pc("sosp", "2017", "SOSP") 112 | #check_pc("eurosys", "2017", "EuroSys") 113 | #check_pc("fast", "2018", "FAST") 114 | #check_pc("osdi", "2016", "OSDI") 115 | #check_pc("usenix", "2017", "USENIX Annual Technical Conference") 116 | #check_pc("popl", "2017", "POPL") 117 | #check_pc("pldi", "2017", "PLDI") 118 | #check_pc("sigcomm", "2018", "SIGCOMM") 119 | #check_pc("osdi", "2018", "OSDI") 120 | check_pc("isca", "2019", "ISCA") 121 | -------------------------------------------------------------------------------- /dblp/__init__.py: -------------------------------------------------------------------------------- 1 | import requests 2 | from lxml import etree 3 | from collections import namedtuple 4 | 5 | DBLP_BASE_URL = 'http://dblp.uni-trier.de/' 6 | DBLP_AUTHOR_SEARCH_URL = DBLP_BASE_URL + 'search/author' 7 | 8 | DBLP_PERSON_URL = DBLP_BASE_URL + 'pers/xk/{urlpt}' 9 | DBLP_PUBLICATION_URL = DBLP_BASE_URL + 'rec/bibtex/{key}.xml' 10 | 11 | DBLP_VENUE_URL = DBLP_BASE_URL + 'pers/xk/{urlpt}' 12 | DBLP_PUB_SEARCH_URL = DBLP_BASE_URL + 'search/publ/api' 13 | 14 | class LazyAPIData(object): 15 | def __init__(self, lazy_attrs): 16 | self.lazy_attrs = set(lazy_attrs) 17 | self.data = None 18 | 19 | def __getattr__(self, key): 20 | if key in self.lazy_attrs: 21 | if self.data is None: 22 | self.load_data() 23 | return self.data[key] 24 | raise AttributeError, key 25 | 26 | def load_data(self): 27 | pass 28 | 29 | class Author(LazyAPIData): 30 | """ 31 | Represents a DBLP author. All data but the author's key is lazily loaded. 32 | Fields that aren't provided by the underlying XML are None. 33 | 34 | Attributes: 35 | name - the author's primary name record 36 | publications - a list of lazy-loaded Publications results by this author 37 | homepages - a list of author homepage URLs 38 | homonyms - a list of author aliases 39 | """ 40 | def __init__(self, urlpt): 41 | self.urlpt = urlpt 42 | self.xml = None 43 | super(Author, self).__init__(['name','publications','homepages', 44 | 'homonyms']) 45 | 46 | def load_data(self): 47 | resp = requests.get(DBLP_PERSON_URL.format(urlpt=self.urlpt)) 48 | # TODO error handling 49 | xml = resp.content 50 | self.xml = xml 51 | root = etree.fromstring(xml) 52 | data = { 53 | 'name':root.attrib['name'], 54 | 'publications':[Publication(k) for k in 55 | root.xpath('/dblpperson/dblpkey[not(@type)]/text()')], 56 | 'homepages':root.xpath( 57 | '/dblpperson/dblpkey[@type="person record"]/text()'), 58 | 'homonyms':root.xpath('/dblpperson/homonym/text()') 59 | } 60 | 61 | self.data = data 62 | 63 | def first_or_none(seq): 64 | try: 65 | return next(iter(seq)) 66 | except StopIteration: 67 | pass 68 | 69 | Publisher = namedtuple('Publisher', ['name', 'href']) 70 | Series = namedtuple('Series', ['text','href']) 71 | Citation = namedtuple('Citation', ['reference','label']) 72 | 73 | class Publication(LazyAPIData): 74 | """ 75 | Represents a DBLP publication- eg, article, inproceedings, etc. All data but 76 | the key is lazily loaded. Fields that aren't provided by the underlying XML 77 | are None. 78 | 79 | Attributes: 80 | type - the publication type, eg "article", "inproceedings", "proceedings", 81 | "incollection", "book", "phdthesis", "mastersthessis" 82 | sub_type - further type information, if provided- eg, "encyclopedia entry", 83 | "informal publication", "survey" 84 | title - the title of the work 85 | authors - a list of author names 86 | journal - the journal the work was published in, if applicable 87 | volume - the volume, if applicable 88 | number - the number, if applicable 89 | chapter - the chapter, if this work is part of a book or otherwise 90 | applicable 91 | pages - the page numbers of the work, if applicable 92 | isbn - the ISBN for works that have them 93 | ee - an ee URL 94 | crossref - a crossrel relative URL 95 | publisher - the publisher, returned as a (name, href) named tuple 96 | citations - a list of (text, label) named tuples representing cited works 97 | series - a (text, href) named tuple describing the containing series, if 98 | applicable 99 | """ 100 | def __init__(self, key): 101 | self.key = key 102 | self.xml = None 103 | super(Publication, self).__init__( ['type', 'sub_type', 104 | 'mdate', 'authors', 105 | 'editors', 'title', 106 | 'year', 'month', 107 | 'journal', 'venue', 108 | 'volume', 'number', 109 | 'chapter', 'pages', 'ee', 110 | 'isbn', 'url', 111 | 'booktitle', 'crossref', 112 | 'publisher', 'school', 113 | 'citations', 'series']) 114 | 115 | def load_data(self): 116 | resp = requests.get(DBLP_PUBLICATION_URL.format(key=self.key)) 117 | xml = resp.content 118 | self.xml = xml 119 | root = etree.fromstring(xml) 120 | publication = first_or_none(root.xpath('/dblp/*[1]')) 121 | if publication is None: 122 | raise ValueError 123 | data = { 124 | 'type':publication.tag, 125 | 'sub_type':publication.attrib.get('publtype', None), 126 | 'mdate':publication.attrib.get('mdate', None), 127 | 'authors':publication.xpath('author/text()'), 128 | 'editors':publication.xpath('editor/text()'), 129 | 'title':first_or_none(publication.xpath('title/text()')), 130 | 'year':int(first_or_none(publication.xpath('year/text()'))), 131 | 'month':first_or_none(publication.xpath('month/text()')), 132 | 'journal':first_or_none(publication.xpath('journal/text()')), 133 | 'venue':first_or_none(publication.xpath('venue/text()')), 134 | 'volume':first_or_none(publication.xpath('volume/text()')), 135 | 'number':first_or_none(publication.xpath('number/text()')), 136 | 'chapter':first_or_none(publication.xpath('chapter/text()')), 137 | 'pages':first_or_none(publication.xpath('pages/text()')), 138 | 'ee':first_or_none(publication.xpath('ee/text()')), 139 | 'isbn':first_or_none(publication.xpath('isbn/text()')), 140 | 'url':first_or_none(publication.xpath('url/text()')), 141 | 'booktitle':first_or_none(publication.xpath('booktitle/text()')), 142 | 'crossref':first_or_none(publication.xpath('crossref/text()')), 143 | 'publisher':first_or_none(publication.xpath('publisher/text()')), 144 | 'school':first_or_none(publication.xpath('school/text()')), 145 | 'citations':[Citation(c.text, c.attrib.get('label',None)) 146 | for c in publication.xpath('cite') if c.text != '...'], 147 | 'series':first_or_none(Series(s.text, s.attrib.get('href', None)) 148 | for s in publication.xpath('series')) 149 | } 150 | 151 | self.data = data 152 | 153 | def search(author_str): 154 | resp = requests.get(DBLP_AUTHOR_SEARCH_URL, params={'xauthor':author_str}) 155 | #TODO error handling 156 | root = etree.fromstring(resp.content) 157 | return [Author(urlpt) for urlpt in root.xpath('/authors/author/@urlpt')] 158 | 159 | def searchvenue(venue_str): 160 | resp = requests.get(DBLP_PUB_SEARCH_URL, params={'q':venue_str}) 161 | #TODO error handling 162 | root = etree.fromstring(resp.content) 163 | return [Publication(url) for url in root.xpath('//info/key/text()')] 164 | 165 | def getvenueauthors(venue_str, venue_short): 166 | resp = requests.get(DBLP_PUB_SEARCH_URL, params={'q':venue_str, 'h':100}) 167 | #TODO error handling 168 | root = etree.fromstring(resp.content) 169 | ans = [] 170 | for x in root.findall(".//info/[venue='" + venue_short + "']/../"): 171 | ptext = [y.text for y in x.findall("./pages")] 172 | ttext = [y.text for y in x.findall(".title")] 173 | # Ignore proceedings 174 | if ttext and "Proceedings" in ttext[0]: 175 | continue 176 | # If there is no page information, add all entries anyway 177 | if not ptext: 178 | ans.extend([y.text for y in x.findall("./authors/author")]) 179 | if ptext: 180 | if "-" in ptext[0]: 181 | a, b = ptext[0].split("-") 182 | if (int(b) - int(a)) > 5: 183 | ans.extend([y.text for y in x.findall("./authors/author")]) 184 | return ans 185 | 186 | def getvenueauthorsbypaper(venue_str, venue_short): 187 | resp = requests.get(DBLP_PUB_SEARCH_URL, params={'q':venue_str, 'h':1000}) 188 | #TODO error handling 189 | root = etree.fromstring(resp.content) 190 | ans = [] 191 | each_ans = [] 192 | for x in root.findall(".//info/[venue='" + venue_short + "']/../"): 193 | ptext = [y.text for y in x.findall("./pages")] 194 | ttext = [y.text for y in x.findall(".title")] 195 | # Ignore proceedings 196 | if ttext and "Proceedings" in ttext[0]: 197 | continue 198 | # If there is no page information, add all entries anyway 199 | if not ptext: 200 | each_ans = [y.text for y in x.findall("./authors/author")] 201 | if ptext: 202 | if "-" in ptext[0]: 203 | a, b = ptext[0].split("-") 204 | if int(b) < int(a): 205 | # wrong metadata, just ignore and add 206 | each_ans = [y.text for y in x.findall("./authors/author")] 207 | if (int(b) - int(a)) > 5: 208 | each_ans = [y.text for y in x.findall("./authors/author")] 209 | 210 | if len(each_ans) > 0: 211 | fans = [] 212 | fans.append(ttext) 213 | fans.append(each_ans) 214 | ans.append(fans) 215 | 216 | return ans 217 | -------------------------------------------------------------------------------- /eurosys17-pc.txt: -------------------------------------------------------------------------------- 1 | Andrea C. Arpaci-Dusseau, University of Wisconsin 2 | Mahesh Balakrishnan, Yale University 3 | Andrew Baumann, Microsoft Research 4 | Frank Bellosa, Karlsruhe Institute of Technology 5 | Herbert Bos, VU University 6 | Edouard Bugnion, EPFL 7 | Cristian Cadar, Imperial College London 8 | Marco Canini, KAUST 9 | Haibo Chen, Shanghai Jiao Tong University 10 | Shimin Chen, Chinese Academy of Sciences 11 | Byung-Gon Chun, Seoul National University 12 | Fred Douglis, Dell EMC 13 | Pascal Felber, University of Neuchatel 14 | Anja Feldmann, TU Berlin 15 | Paulo Ferreira, University of Lisbon 16 | Christof Fetzer, TU Dresden 17 | Ada Gavrilovska, Georgia Tech 18 | Ioana Giurgiu, IBM Research Zurich 19 | Steven Hand, Google 20 | Tim Harris, Oracle Labs 21 | Valérie Issarny, INRIA 22 | Evangelia Kalyvianaki, City University London 23 | Idit Keidar, Technion 24 | Anne-Marie Kermarrec, INRIA 25 | Christoph Kirsch, University of Salzburg 26 | Dejan Kostic, Royal Institute of Technology 27 | Orran Krieger, Boston University 28 | Jean-Pierre Lozi, University of Nice Sophia Antipolis 29 | Kathryn McKinley, Microsoft Research 30 | Ishai Menache, Microsoft Research 31 | Ippokratis Pandis, Amazon 32 | Marta Patiño, Technical University of Madrid 33 | Raluca Ada Popa, UC Berkeley 34 | Peter Pietzuch, Imperial College London 35 | Mema Roussopoulos, University of Athens 36 | Ant Rowstron, Microsoft Research Cambridge 37 | Marco Serafini, Qatar Computing Research Institute 38 | Dilma da Silva, Texas A&M University 39 | Susan Spence, Hewlett Packard Labs 40 | Neeraj Suri, TU Darmstadt 41 | Dan Tsafrir, Technion 42 | Jens Teubner, TU Dortmund 43 | Nalini Venkatasubramanian, UC Irvine 44 | Paulo Veríssimo, University of Luxemburg 45 | Roger Wattenhofer, ETH Zurich 46 | Zheng Zhang, NYU Shanghai 47 | Noa Zilberman, University of Cambridge 48 | -------------------------------------------------------------------------------- /fast18-pc.txt: -------------------------------------------------------------------------------- 1 | Andrea C. Arpaci-Dusseau, University of Wisconsin—Madison 2 | Anirudh Badam, Microsoft Research 3 | Mahesh Balakrishnan, Yale 4 | Pramod Bhatotia, University of Edinburgh 5 | Andre Brinkmann, Johannes Gutenberg-University Mainz 6 | Vijay Chidambaram, University of Texas at Austin 7 | Angela Demke Brown, University of Toronto 8 | Kevin Greenan, Box Inc. 9 | Jorge Guerra, VMWare 10 | Haryadi S. Gunawi, University of Chicago 11 | Dean Hildebrand, Google 12 | Cheng Huang, Microsoft Azure 13 | Hong Jiang, University of Texas at Arlington 14 | Umesh Maheshwari, Nimble Storage (an HPE company) 15 | Arif Merchant, Google 16 | Ethan L. Miller, University of California, Santa Cruz, and PureStorage 17 | Dushyanth Narayanan, Microsoft Research 18 | Ed Nightingale, Microsoft Research 19 | Sam H. Noh, UNIST (Ulsan National Institute of Science and Technology) 20 | Vijayan Prabhakaran, Amazon 21 | Bianca Schroeder, University of Toronto 22 | Philip Shilane, Dell EMC 23 | Keith A. Smith, NetApp 24 | Vasily Tarasov, IBM Research 25 | Cristian Ungureanu, Google 26 | Ashish Vulimiri, Samsung Research 27 | Andrew Warfield, University of British Columbia 28 | Sage Weil, Red Hat 29 | Youjip Won, Hanyang University 30 | Gala Yadgar, Technion - Israel Institute of Technology 31 | Ming Zhao, Arizona State University 32 | -------------------------------------------------------------------------------- /isca17-pc.txt: -------------------------------------------------------------------------------- 1 | Aamer Jaleel - Nvidia 2 | Abdullah Muzahid - UT San Antonio 3 | Abhishek Bhattacharjee - Rutgers 4 | Adrian Sampson - Cornell 5 | Alper Buyuktosunoglu - IBM 6 | Antonia Zhai - U.Minnesota 7 | Antonio Gonzalez - UPC 8 | Babak Falsafi - EPFL 9 | Benjamin Lee - Duke 10 | Brandon Lucia - CMU 11 | Carol-Jean Wu - Arizona State 12 | Chia-Lin Yang - National Taiwan University 13 | Chris Batten - Cornell 14 | Chris Wilkerson - Intel 15 | Christina Delimitrou - Cornell 16 | Daniel Sorin - Duke University 17 | Daniel Sanchez - MIT 18 | Doug Burger - Microsoft 19 | Drew Hilton - Duke 20 | G. Edward Suh - Cornell 21 | Emre Ozer - ARM Research 22 | Hadi Esmaeilzadeh - Georgia Tech 23 | James Hoe - CMU 24 | Jangwoo Kim - Seoul National University 25 | Josep Torrellas - UIUC 26 | Jun Yang - Pittsburgh 27 | Jung Ho Ahn - Seoul National University 28 | Karu Sankaralingam - Wisconsin 29 | Kei Hiraki - U.Tokyo 30 | Kim Hazelwood - Facebook 31 | Koji Inoue - Kyushu University 32 | Kunle Olukotun - Stanford 33 | Lieven Eeckhout - Ghent Univ. 34 | Lingjia Tang - Michigan 35 | Lisa Wu - Berkeley 36 | Lizy John - UT Austin 37 | Luis Ceze - Washington 38 | Martha Kim - Columbia 39 | Mattan Erez - UT Austin 40 | Michael Ferdman - Stony Brook University 41 | Michael Taylor - UCSD 42 | Mike O'Connor - Nvidia 43 | Moinuddin Qureshi - Georgia Tech 44 | Nam Sung Kim - UIUC 45 | Natalie Enright-Jerger - U.Toronto 46 | Omer Khan - Connecticut 47 | Onur Mutlu - ETH 48 | Paul Whatmough - Harvard 49 | Paul Gratz - Texas A&M 50 | Pierre Michaud - INRIA 51 | Qiang Wu - Facebook 52 | Rajeev Balasubramonian - Utah 53 | Ramon Canal - UPC-Barcelona Tech 54 | Ravi Iyer - Intel 55 | Reetuparna Das - Michigan 56 | Russ Joseph - Northwestern 57 | Sally McKee - Rambus and Chalmers University of Technology 58 | Sandhya Dwarkadas - Rochester 59 | Shih-Lien Lu - TSMC 60 | Simha Sethumadhavan - Columbia/Chip Scan 61 | Yakun Sophia Shao - Nvidia 62 | Sreenivas Subramoney - Intel 63 | Steve Swanson - UCSD 64 | Tao Li - University of Florida/NSF 65 | Vijay Janapa Reddi - UT Austin 66 | Viji Srinivasan - IBM 67 | Xiaoyao Liang - Shanghai Jiao Tong University 68 | Xuehai Qian - USC 69 | Yan Solihin - NSF/NC State 70 | Yiannakis Sazeides - U. of Cyprus 71 | -------------------------------------------------------------------------------- /isca19-pc.txt: -------------------------------------------------------------------------------- 1 | Alaa Alameldeen, Intel 2 | Yungang Bao, ICT - CAS 3 | Nathan Beckmann, CMU 4 | David Black-Schaffer, Uppsala University 5 | Pradip Bose, IBM Research 6 | Ramon Canal, UPC 7 | Lizhong Chen, Oregon State 8 | Yunji Chen, ICT - CAS 9 | Reetuparna Das, Michigan 10 | Yasuko Eckert, AMD Research 11 | Mattan Erez, University of Texas 12 | Dan Ernst, Cray 13 | Mike Ferdman, SUNY Stonybrook 14 | Chris Fletcher, University of Illinois 15 | Maya Gokhale, LLNL 16 | Paul Gratz, Texas A&M University 17 | Xiaochen Guo, Lehigh University 18 | Christopher Hughes, Intel 19 | Jaehyuk Huh, KAIST 20 | Koji Inoue, Kyushu University 21 | Xun (Steve) Jian, Virginia Tech 22 | Mahmut T. Kandemir, Penn State 23 | Ulya Karpuzcu, University Minnesota/Brown University 24 | Samira Khan, University Virginia 25 | John Kim, KAIST 26 | Nam Sung Kim, Samsung 27 | Michel Kinsy, Boston University 28 | Tushar Krishna, Georgia Tech 29 | Rakesh Kumar, University of Illinois 30 | Benjamin Lee, Duke University 31 | Hsien-Hsin Lee, Facebook 32 | Jae W. Lee, Seoul National University 33 | Hai (Helen) Li, Duke University 34 | Jing Li, University of Wisconsin 35 | Ahmed Louri, George Washington University 36 | Brandon Lucia, CMU 37 | Diana Marculescu, CMU 38 | Andres Marquez, Pacific Northwest National Labs 39 | Jason Mars, University of Michigan 40 | Jose MartÌnez, Cornell University 41 | Gokhan Memik, Northwestern University 42 | Shubu Mukherjee, Marvell 43 | Abdullah Muzahid, Texas A&M University 44 | Ravi Nair, IBM Research 45 | Mike O'Connor, Nvidia 46 | Gennady Pekhimenko, University of Toronto 47 | Gilles Pokam, Intel 48 | Dmitry Ponomarev, SUNY Binghamton 49 | Andrew Putnam, Microsoft 50 | Xuehai Qian, University of Southern California 51 | Brandon Reagen, Facebook 52 | Steve Reinhardt, Microsoft 53 | Jose Renau, UC Santa-Cruz 54 | Adrian Sampson, Cornell University 55 | Joshua San Miguel, University of Wisconsin 56 | Simha Sethumadhavan, Columbia University 57 | Matt Sinclair, University of Wisconsin, AMD Research 58 | Yan Solihin, University of Central Florida 59 | Daniel Sorin, Duke University 60 | Jeff Stuecheli, IBM 61 | Edward Suh, Cornell University 62 | Jakub Szefer, Yale University 63 | Mohit Tiwari, UT Austin 64 | Pinar Tozun, IT University of Copenhagen 65 | Ashish Venkat, University of Virginia 66 | David Wentzlaff, Princeton University 67 | Carole-Jean Wu, Arizona State University/Facebook 68 | Yuan Xie, UC Santa Barbara 69 | Chia-Lin Yang, NTU 70 | Jun Yang, University of Pittsburgh 71 | Cliff Young, Google 72 | Jishen Zhao, UCSD 73 | Huiyang Zhou, North Carolina State 74 | Yuhao Zhu, University of Rochester 75 | -------------------------------------------------------------------------------- /isca19-pcpapers.txt: -------------------------------------------------------------------------------- 1 | PC Paper # 1 2 | Title: Janus - optimizing memory and storage support for non-volatile memory systems. 3 | PC Member who is author: Gennady Pekhimenko 4 | 5 | PC Paper # 2 6 | Title: Filter caching for free - the untapped potential of the store-buffer. 7 | PC Member who is author: David Black-Schaffer 8 | 9 | PC Paper # 3 10 | Title: Triad-NVM - persistency for integrity-protected and encrypted non-volatile memories. 11 | PC Member who is author: Yan Solihin 12 | 13 | PC Paper # 4 14 | Title: Perceptron-based prefetch filtering. 15 | PC Member who is author: Paul Gratz 16 | 17 | PC Paper # 5 18 | Title: CoNDA - efficient cache coherence support for near-data accelerators. 19 | PC Member who is author: Brandon Lucia 20 | 21 | PC Paper # 6 22 | Title: A stochastic-computing based deep learning framework using adiabatic quantum-flux-parametron superconducting technology. 23 | PC Member who is author: Xuehai Qian 24 | 25 | PC Paper # 7 26 | Title: DeepAttest - an end-to-end attestation framework for deep neural networks. 27 | PC Member who is author: Jishen Zhao 28 | 29 | PC Paper # 8 30 | Title: Secure TLBs. 31 | PC Member who is author: Jakub Szefer 32 | 33 | PC Paper # 9 34 | Title: TIE - energy-efficient tensor train-based inference engine for deep neural network. 35 | PC Member who is author: Xuehai Qian 36 | 37 | PC Paper # 10 38 | Title: PES - proactive event scheduling for responsive and energy-efficient mobile web computing. 39 | PC Member who is author: Yuhao Zhu 40 | 41 | PC Paper # 11 42 | Title: Duality cache for data parallel acceleration. 43 | PC Member who is author: Reetuparna Das 44 | 45 | PC Paper # 12 46 | Title: Interplay between hardware prefetcher and page eviction policy in CPU-GPU unified virtual memory. 47 | PC Member who is author: Jun Yang 48 | 49 | PC Paper # 13 50 | Title: Energy-efficient video processing for virtual reality. 51 | PC Member who is author: Yuhao Zhu 52 | 53 | PC Paper # 14 54 | Title: MGPUSim - enabling multi-GPU performance modeling and optimization. 55 | PC Member who is author: John Kim 56 | 57 | PC Paper # 15 58 | Title: IntelliNoC - a holistic design framework for energy-efficient and reliable on-chip communication for manycores. 59 | PC Member who is author: Ahmed Louri 60 | 61 | PC Paper # 16 62 | Title: TPShare - a time-space sharing scheduling abstraction for shared cloud via vertical labels. 63 | PC Member who is author: Xuehai Qian 64 | 65 | PC Paper # 17 66 | Title: Sparse ReRAM engine - joint exploration of activation and weight sparsity in compressed neural networks. 67 | PC Member who is author: Chia-Lin Yang 68 | 69 | PC Paper # 18 70 | Title: Cambricon-F - machine learning computers with fractal von neumann architecture. 71 | PC Member who is author: Yunji Chen 72 | 73 | ISCA 2019 74 | Total papers: 62 75 | PC Papers: 18 76 | Percentage: 29.0 77 | -------------------------------------------------------------------------------- /mobicom14-pc.txt: -------------------------------------------------------------------------------- 1 | Ashutosh Sabharwal 2 | Prasun Sinha 3 | Sharad Agarwal 4 | Ehsan Aryafar 5 | Victor Bahl 6 | Aruna Balasubramanian 7 | Giuseppe Bianchi 8 | Joseph Camp 9 | Ranveer Chandra 10 | Yingying (Jennifer) 11 | Song Chong 12 | Romit Roy 13 | Samir Das 14 | Supratim Deb 15 | Prabal Dutta 16 | Christina Fragouli 17 | Mario Gerla 18 | Shyamnath Gollakota 19 | Ben Greenstein 20 | Marco Gruteser 21 | Omer Gurewitz 22 | Polly Huang 23 | Kyle Jamieson 24 | Edward Knightly 25 | Sung-Ju Lee 26 | Baochun Li 27 | Xiangyang Li 28 | Kate Lin 29 | Songwu Lu 30 | Thomas Moscibroda 31 | Thyaga Nandagopal 32 | Vishnu Navda 33 | Srihari Nelakuditi 34 | Jason Nieh 35 | Chunyi Peng 36 | Chiara Petriolli 37 | Lili Qiu 38 | Souvik Sen 39 | Srinivasan Seshan 40 | Raghupathy Sivakumar 41 | Alex Snoeren 42 | Kannan Srinivasan 43 | Lakshmi Subramanian 44 | Karthikeyan Sundaresan 45 | Nitin Vaidya 46 | Arun Venkataramani 47 | Xinbing Wang 48 | Matt Welsh 49 | Joerg Widmer 50 | Ho Yin 51 | Guoliang Xing 52 | Moustafa Youssef 53 | Lin Zhong 54 | -------------------------------------------------------------------------------- /mobicom15-pc.txt: -------------------------------------------------------------------------------- 1 | Sneha Kumar Kasera 2 | Heather Zheng 3 | Victor Bahl 4 | Aruna Balasubramanian 5 | Sujata Banerjee 6 | Suman Banerjee 7 | Milind Buddhikot 8 | Srdjan Capkun 9 | Yingying Chen 10 | Ranveer Chandra 11 | Sabrina Gaito 12 | Ben Greenstein 13 | Shyamnath Gollakota 14 | Marco Gruteser 15 | Y. Charlie 16 | Wenjun Hu 17 | Robin Kravets 18 | Srikanth Krishnamurthy 19 | Sung-Ju Lee 20 | Ilias Leontiadis 21 | Li Erran 22 | Mo Li 23 | Xiangyang Li 24 | Yunhao Liu 25 | Chenyang Lu 26 | Songwu Lu 27 | Petri Mähönen 28 | Z. Morley 29 | Thyagarajan Nandagopal 30 | Panos Papadimitratos 31 | Guevara Noubir 32 | Neal Patwari 33 | Giovanni Pau 34 | Chunyi Peng 35 | Chiara Petriolli 36 | Lili Qiu 37 | Bozidar Radunovic 38 | Ramachandran Ramjee 39 | Eric Rozner 40 | Jacky Shen 41 | Alex Snoeren 42 | Kannan Srinivasan 43 | Lakshmi Subramanian 44 | Karthik Sundaresan 45 | Matt Welsh 46 | Xinyu Zhang 47 | Lin Zhong 48 | Xia Zhou 49 | -------------------------------------------------------------------------------- /mobicom16-pc.txt: -------------------------------------------------------------------------------- 1 | Y. Charlie Hu 2 | Karthik Sundaresan 3 | Mustafa Arslan 4 | Ehsan Aryafar 5 | Victor Bahl 6 | Aruna Balasubramanian 7 | Milind Buddhikot 8 | Srdjan Capkun 9 | Eugene Chai 10 | Ranveer Chandra 11 | Yingying Chen 12 | Sunghyun Choi 13 | Saumitra 14 | Sonia Fahmy 15 | Christina Fragouli 16 | Shyamnath Gollakota 17 | Ben Greenstein 18 | Marco Gruteser 19 | Maruti Gupta 20 | Haitham Hassanieh 21 | Tian He 22 | Wenjun Hu 23 | Kyle 24 | Sneha Kasera 25 | Kyu-Han Kim 26 | Dimitrios Koutsonikolas 27 | Swarun Kumar 28 | Sung-Ju Lee 29 | Mo Li 30 | Erran Li 31 | Kate Lin 32 | Songwu Lu 33 | Petri Mähönen 34 | Z. Morley 35 | Thomas Moscibroda 36 | Thyagarajan Nandagopal 37 | Jason Nieh 38 | Guevara Noubir 39 | Panos Papadimitratos 40 | Giovanni Pau 41 | Chunyi Peng 42 | Feng Qian 43 | Lili Qiu 44 | Bozidar Radunovic 45 | Sivakumar Raghupathy 46 | Ashutosh Sabarwal 47 | Souvik Sen 48 | Muhammad Shahzad 49 | Ashish Sharma 50 | Doug 51 | Prasun Sinha 52 | Kannan Srinivasan 53 | Kun Tan 54 | Jacobus Van 55 | Matt Welsh 56 | Jie Xiong 57 | Xinyu Zhang 58 | Heather Zheng 59 | Xia Zhou 60 | Gil Zussman 61 | -------------------------------------------------------------------------------- /mobicom17-pc.txt: -------------------------------------------------------------------------------- 1 | Kobus Van der Merwe 2 | Ben Greenstein 3 | Kannan Srinivasan 4 | Fadel Adib 5 | Sharad Agarwal 6 | Victor Bahl 7 | Aruna Balasubramanian 8 | Tarun Bansal 9 | Elizabeth Belding 10 | Srdjan Capkun 11 | Geoffrey Challen 12 | Ranveer Chandra 13 | Bo Chen 14 | Yingying Chen 15 | David Chu 16 | Samir R. Das 17 | Christina Fragouli 18 | Mario Gerla 19 | Shyamnath Gollakota 20 | Marco Gruteser 21 | Haitham Hassanieh 22 | Tian He 23 | Wenjun Hu 24 | Y. Charlie 25 | Polly Huang 26 | Kyle Jamieson 27 | Sneha Kasera 28 | Dimitrios Koutsonikolas 29 | Robin Kravets 30 | Srikanth Krishnamurthy 31 | Swarun Kumar 32 | Sung-Ju Lee 33 | Mo Li 34 | Robert LiKamWa 35 | Songwu Lu 36 | Thomas Moscibroda 37 | Thyaga Nandagopal 38 | Vishnu Navda 39 | Srihari Nelakuditi 40 | Jason Nieh 41 | Panos Papadimitratos 42 | Giovanni Pau 43 | Chunyi Peng 44 | Chiara Petriolli 45 | Matthai Philipose 46 | Lili Qiu 47 | Bozidar Radunovic 48 | Eric Rozner 49 | Ashutosh Sabarwal 50 | Souvik Sen 51 | Prasun Sinha 52 | Raghupathy Sivakumar 53 | Josh Smith 54 | Lakshmi Subramanian 55 | Karthik Sundaresan 56 | Andreas Terzis 57 | He Wang 58 | Matt Welsh 59 | Jie Xiong 60 | Xinyu Zhang 61 | Heather Zheng 62 | Lin Zhong 63 | Xia Zhou 64 | -------------------------------------------------------------------------------- /nsdi15-pc.txt: -------------------------------------------------------------------------------- 1 | Paul Barham, Google 2 | Arvind Krishnamurthy, University of Washington 3 | Atul Adya, Google 4 | Aditya Akella, University of Wisconsin–Madison 5 | Katerina Argyraki, EPFL 6 | Hitesh Ballani, Microsoft Research Cambridge 7 | Suman Banerjee, University of Wisconsin–Madison 8 | Jeff Chase, Duke University 9 | Jeff Dean, Google 10 | Prabal Dutta, University of Michigan 11 | Nick Feamster, Princeton University 12 | Rodrigo Fonseca, Brown University 13 | Deepak Ganesan, University of Massachusetts Amherst 14 | Sharon Goldberg, Boston University 15 | Andreas Haeberlen, University of Pennsylvania 16 | Mark Handley, University College London 17 | Jon Howell, Microsoft Research Redmond 18 | Jaeyeon Jung, Microsoft Research Redmond 19 | Sachin Katti, Stanford University 20 | Ethan Katz-Bassett, University of Southern California 21 | Kim Keeton, HP Labs 22 | Changhoon Kim, Barefoot Networks 23 | Eddie Kohler, Harvard University 24 | Dejan Kostic, KTH Royal Institute of Technology 25 | Kate Lin, Academia Sinica Taiwan 26 | David Maltz, Microsoft Redmond 27 | Petros Maniatis, Google 28 | Alan Mislove, Northeastern University 29 | Richard Mortier, University of Nottingham 30 | Dushyanth Narayanan, Microsoft Research Cambridge 31 | Venkat Padmanabhan, Microsoft Research India 32 | KyoungSoo Park, KAIST 33 | George Porter, University of California, San Diego 34 | Rama Ramasubramanian, Google 35 | Franzi Roesner, University of Washington 36 | Srinivasan Seshan, Carnegie Mellon University 37 | Neil Spring, University of Maryland 38 | Lakshmi Subramanian, New York University 39 | Kobus van der Merwe, University of Utah 40 | Robbert van Renesse, Cornell University 41 | Geoff Voelker, University of California, San Diego 42 | Hakim Weatherspoon, Cornell University 43 | Matei Zaharia, MIT CSAIL and Databricks 44 | Nickolai Zeldovich, MIT CSAIL 45 | Lidong Zhou, Microsoft Research Asia 46 | Nick Feamster, Princeton University 47 | Casey Henderson, USENIX Association 48 | Arvind Krishnamurthy, University of Washington 49 | Brian Noble, University of Michigan 50 | Jennifer Rexford, Princeton University 51 | Mike Schroeder 52 | Alex C. Snoeren, University of California, San Diego 53 | -------------------------------------------------------------------------------- /nsdi16-pc.txt: -------------------------------------------------------------------------------- 1 | Katerina Argyraki, EPFL 2 | Rebecca Isaacs, Google 3 | Aditya Akella, University of Wisconsin—Madison 4 | Mohammad Alizadeh, Massachusetts Institute of Technology 5 | Mona Attariyan, Google 6 | Hari Balakrishnan, Massachusetts Institute of Technology 7 | Mahesh Balakrishnan, Yale University 8 | Aruna Balasubramanian, Stony Brook University 9 | Sujata Banerjee, HP Labs 10 | Paul Barford, University of Wisconsin—Madison and comScore 11 | Ranjita Bhagwan, Microsoft Research India 12 | Nathan Bronson, Facebook 13 | Paolo Costa, Microsoft Research 14 | Paul Francis, Max Planck Institute for Software Systems (MPI-SWS) 15 | Monia (Manya) Ghobadi, Microsoft Research 16 | Shyam Gollakota, University of Washington 17 | Jon Howell, Google 18 | Kyle Jamieson, Princeton University 19 | Srikanth Kandula, Microsoft 20 | Brad Karp, University College London 21 | S. Keshav, University of Waterloo 22 | Changhoon Kim, Barefoot Networks 23 | Ramakrishna Kotla, Amazon 24 | Jinyang Li, New York University 25 | David Lie, University of Toronto 26 | Kate C.-J. Lin, Academia Sinica, Taiwan 27 | Wyatt Lloyd, University of Southern California 28 | Jay Lorch, Microsoft Research 29 | Ratul Mahajan, Microsoft Research 30 | Prateek Mittal, Princeton University 31 | Thomas Moscibroda, Microsoft Research 32 | David Oran, Cisco Systems 33 | Oriana Riva, Microsoft Research 34 | Vyas Sekar, Carnegie Mellon University 35 | Siddhartha Sen, Microsoft Research 36 | Srinivasan Seshan, Carnegie Mellon University 37 | Ankit Singla, ETH Zürich 38 | Jonathan Smith, University of Pennsylvania 39 | Alex Snoeren, University of California, San Diego 40 | Kobus Van der Merwe, University of Utah 41 | Laurent Vanbever, ETH Zürich 42 | Matt Welsh, Google 43 | 44 | -------------------------------------------------------------------------------- /nsdi17-pc.txt: -------------------------------------------------------------------------------- 1 | Aditya Akella, University of Wisconsin–Madison 2 | Jon Howell, Google 3 | Sharad Agarwal, Microsoft 4 | Tom Anderson, University of Washington 5 | Andrea Arpaci-Dusseau, University of Wisconsin—Madison 6 | Anirudh Badam, Microsoft 7 | Mahesh Balakrishnan, Yale University 8 | Fabian Bustamante, Northwestern University 9 | Ranveer Chandra, Microsoft 10 | David Choffnes, Northeastern University 11 | Romit Roy Choudhury, University of Illinois at Urbana-Champaign 12 | Mosharaf Chowdhury, University of Michigan 13 | Mike Dahlin, Google 14 | Anja Feldmann, Technische Universität Berlin 15 | Rodrigo Fonseca, Brown University 16 | Nate Foster, Cornell University 17 | Deepak Ganesan, University of Massachusetts Amherst 18 | Phillipa Gill, University of Massachusetts Amherst 19 | Srikanth Kandula, Microsoft 20 | Teemu Koponen, Styra 21 | Sanjeev Kumar, Uber 22 | Swarun Kumar, Carnegie Mellon University 23 | Wyatt Lloyd, University of Southern California 24 | Boon Thau Loo, University of Pennsylvania 25 | Jacob Lorch, Microsoft 26 | Ratul Mahajan, Microsoft 27 | Dahlia Malkhi, VMware 28 | Dave Maltz, Microsoft 29 | Z. Morley Mao, University of Michigan 30 | Michael Mitzenmacher, Harvard University 31 | Jason Nieh, Columbia University 32 | George Porter, University of California, San Diego 33 | Luigi Rizzo, University of Pisa 34 | Srini Seshan, Carnegie Mellon University 35 | Anees Shaikh, Google 36 | Ankit Singla, ETH Zurich 37 | Robbert van Renesse, Cornell University 38 | Geoff Voelker, University of California, San Diego 39 | David Wetherall, Google 40 | Adam Wierman, California Institute of Technology 41 | John Wilkes, Google 42 | Minlan Yu, University of Southern California 43 | Heather Zheng, University of California, Santa Barbara 44 | Lin Zhong, Rice University 45 | -------------------------------------------------------------------------------- /osdi16-pc.txt: -------------------------------------------------------------------------------- 1 | Nitin Agrawal, Samsung Labs 2 | Andrea C. Arpaci-Dusseau, University of Wisconsin—Madison 3 | Sujata Banerjee, Hewlett Packard Labs 4 | Andrew Baumann, Microsoft Research Redmond 5 | Jeff Chase, Duke University 6 | Peter Chen, University of Michigan 7 | Byung-Gon Chun, Seoul National University 8 | Jeff Dean, Google 9 | Amol Deshpande, University of Maryland 10 | Peter Druschel, Max Planck Institute for Software Systems (MPI-SWS) 11 | Sasha Fedorova, University of British Columbia 12 | Bryan Ford, École Polytechnique Fédérale de Lausanne (EPFL) 13 | Roxana Geambasu, Columbia University 14 | Philip Gibbons, Carnegie Mellon University 15 | Saikat Guha, Microsoft Research India 16 | Gernot Heiser, NICTA and University of New South Wales 17 | Y. Charlie Hu, Purdue University 18 | Galen Hunt, Microsoft Research Redmond 19 | Rebecca Isaacs, Google 20 | Michael Kaminsky, Intel Labs 21 | Randy Katz, University of California, Berkeley 22 | Dejan Kostic, KTH Royal Institute of Technology 23 | Tim Kraska, Brown University 24 | Orran Krieger, Boston University 25 | Phil Levis, Stanford University 26 | Boon Loo, University of Pennsylvania 27 | Shan Lu, University of Chicago 28 | Petros Maniatis, Google 29 | Z. Morley Mao, University of Michigan 30 | Frank McSherry, ETH Zurich 31 | James Mickens, Harvard University 32 | Thomas Moscibroda, Microsoft Research China 33 | Dushyanth Narayanan, Microsoft Research Cambridge 34 | Sam H. Noh, UNIST (Ulsan National Institute of Science & Technology) 35 | KyoungSoo Park, Korea Advanced Institute of Science and Technology (KAIST) 36 | Simon Peter, The University of Texas at Austin 37 | George Porter, University of California, San Diego 38 | Dan R. K. Ports, University of Washington 39 | Chris Rossbach, VMware Research and The University of Texas at Austin 40 | Michael Scott, University of Rochester 41 | Margo Seltzer, Harvard School of Engineering and Applied Sciences and Oracle 42 | Dawn Song, University of California, Berkeley 43 | Michael Stumm, University of Toronto 44 | Patrick Traynor, University of Florida 45 | Dan Tsafrir, Technion—Israel Institute of Technology 46 | Robert Watson, University of Cambridge 47 | Ellen Zegura, Georgia Institute of Technology 48 | Zheng Zhang, NYU Shanghai 49 | -------------------------------------------------------------------------------- /pldi17-pc.txt: -------------------------------------------------------------------------------- 1 | Martin Vechev 2 | Eddie Aftandilian 3 | David F. Bacon 4 | Uday Bondhugula 5 | Bor-Yuh Evan Chang 6 | Swarat Chaudhuri 7 | Alvin Cheung 8 | Ravi Chugh 9 | Joseph Devietti 10 | Cezara Drăgoi 11 | Jeffrey S. Foster 12 | Franz Franchetti 13 | Dan Grossman 14 | Tim Harris 15 | Jan Hoffmann 16 | Jeff Huang 17 | Zachary Kincaid 18 | Milind Kulkarni 19 | Shan Lu 20 | Vikash Mansinghka 21 | Sasa Misailovic 22 | Madan Musuvathi 23 | Onur Mutlu 24 | Anders Møller 25 | Mayur Naik 26 | Marco Pistoia 27 | Michael Pradel 28 | Andrey Rybalchenko 29 | Sharon Shoham 30 | Alexandra Silva 31 | Rishabh Singh 32 | Charles Sutton 33 | Eran Yahav 34 | Junfeng Yang 35 | Andreas Zeller 36 | -------------------------------------------------------------------------------- /popl17-pc.txt: -------------------------------------------------------------------------------- 1 | Andrew D. Gordon 2 | Martin Abadi 3 | Josh Berdine 4 | Johannes Borgström 5 | Avik Chaudhuri 6 | Adam Chlipala 7 | Derek Dreyer 8 | Kathleen Fisher 9 | Marco Gaboardi 10 | Ronald Garcia 11 | Cătălin Hriţcu 12 | Bart Jacobs 13 | Ranjit Jhala 14 | Limin Jia 15 | Zachary Kincaid 16 | Dexter Kozen 17 | Akash Lal 18 | Isabella Mastroeni 19 | Andrew Myers 20 | Michele Pagani 21 | Mooly Sagiv 22 | Ilya Sergey 23 | Sharon Shoham 24 | Rishabh Singh 25 | Sam Staton 26 | Eijiro Sumii 27 | David Van Horn 28 | Nobuko Yoshida 29 | Francesco Zappa Nardelli 30 | -------------------------------------------------------------------------------- /popl18-pc.txt: -------------------------------------------------------------------------------- 1 | Thorsten Altenkirch, Member 2 | Nada Amin, , Member 3 | Gilles Barthe , Member 4 | Mark Batty , Member 5 | Lars Birkedal , Member 6 | Pavol Cerny , Member 7 | James Cheney , Member 8 | Koen Claessen , Member 9 | William Cook , Member 10 | Karl Crary , Member 11 | Loris D'Antoni , Member 12 | Mila Dalla Preda , Member 13 | Isil Dillig , Member 14 | Sophia Drossopoulou , Member 15 | Constantin Enea , Member 16 | Azadeh Farzan , Member 17 | Xinyu Feng , Member 18 | Atsushi Igarashi , Member 19 | Laura Kovacs , Member 20 | Neelakantan R. Krishnaswami , Member 21 | Sorin Lerner , Member 22 | Xavier Leroy , Member 23 | Conor McBride , Member 24 | Mira Mezini , Member 25 | Matthew Might , Member 26 | Peter Müller , Member 27 | Santosh Nagarakatte , Member 28 | Aleksandar Nanevski , Member 29 | Klaus Ostermann , Member 30 | Ruzica Piskac , Member 31 | Nadia Polikarpova , Member 32 | Zvonimir Rakamaric , Member 33 | Aseem Rastogi , Member 34 | Grigore Rosu , Member 35 | Andrey Rybalchenko , Member 36 | Amr Sabry , Member 37 | David Sands , Member 38 | Davide Sangiorgi , Member 39 | Peter Sewell , Member 40 | Zhong Shao , Member 41 | Yannis Smaragdakis , Member 42 | Zhendong Su , Member 43 | Éric Tanter , Member 44 | Zachary Tatlock , Member 45 | Tachio Terauchi , Member 46 | Viktor Vafeiadis , Member 47 | Philip Wadler , Member 48 | David Walker , Member 49 | Stephanie Weirich , Member 50 | Jean Yang , Member 51 | Danfeng Zhang , Member 52 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=1.0.4 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup 2 | 3 | def readme(): 4 | with open('README.md') as f: 5 | return f.read() 6 | 7 | setup(name='dblp-python', 8 | version='0.1', 9 | description='A simple wrapper around the DBLP API.', 10 | long_description=readme(), 11 | classifiers=[ 12 | 'Development Status :: 3 - Alpha', 13 | 'License :: OSI Approved :: MIT License', 14 | ], 15 | url='https://github.com/scholrly/dblp-python', 16 | author='Matt Luongo', 17 | author_email='mhluongo@gmail.com', 18 | license='MIT', 19 | packages=['dblp'], 20 | install_requires=[ 21 | 'requests>=1.0.4', 22 | ] 23 | ) 24 | -------------------------------------------------------------------------------- /sigcomm14-pc.txt: -------------------------------------------------------------------------------- 1 | Arvind Krishnamurthy 2 | Sylvia Ratnasamy 3 | Aditya Akella 4 | Katerina Argyraki 5 | Guido Appenzeller 6 | Hitesh Ballani 7 | Paul Barford 8 | Matt Caesar 9 | Augustin Chaintreau 10 | Bruce Davie 11 | Christophe Diot 12 | Nandita Dukkipati 13 | Rodrigo Fonseca 14 | Nate Foster 15 | Ali Ghodsi 16 | Paul Francis 17 | Sharon Goldberg 18 | Brighten Godfrey 19 | Shyam Gollakota 20 | Saikat Guha 21 | Krishna Gummadi 22 | Chuanxiong Guo 23 | Polly Huang 24 | Kyle Jamieson 25 | Brad Karp 26 | Ethan Katz-Bassett 27 | Teemu Koponen 28 | Harsha Madhyastha 29 | Ratul Mahajan 30 | Nick McKeown 31 | Michael Mitzenmacher 32 | Andrew Moore 33 | Robert Morris 34 | Jitendra Padhye 35 | Vivek Pai 36 | Dina Papagiannaki 37 | KyoungSoo Park 38 | Adrian Perrig 39 | Larry Peterson 40 | Srinivasan Seshan 41 | Vyas Sekar 42 | Scott Shenker 43 | Alex Snoeren 44 | Neil Spring 45 | Kun Tan 46 | Renata Teixeira 47 | Amin Vahdat 48 | Walter Willinger 49 | John Wrocklawski 50 | Richard Yang 51 | Xiaowei Yang 52 | Minlan Yu 53 | Ellen Zegura 54 | Yin Zhang 55 | -------------------------------------------------------------------------------- /sigcomm15-pc.txt: -------------------------------------------------------------------------------- 1 | Brad Karp 2 | Jitendra Padhye 3 | Aditya Akella 4 | Mohammad Alizadeh 5 | Katerina Argyraki 6 | Aruna Balasubramanian 7 | Hitesh Ballani 8 | Sujata Banerjee 9 | Keren Bergman 10 | John Byers 11 | Jeff Chase 12 | Mung Chiang 13 | Jon Crowcroft 14 | Bruce Davie 15 | Nandita Dukkipati 16 | Anja Feldmann 17 | Bryan Ford 18 | Nate Foster 19 | Lixin Gao 20 | Brighten Godfrey 21 | Sharon Goldberg 22 | Kyle Jamieson 23 | Srikanth Kandula 24 | Dina Katabi 25 | Sachin Katti 26 | Ethan Katz-Bassett 27 | Teemu Koponen 28 | John C.S.Lui 29 | Z. Morley Mao 30 | Dave Oran 31 | George Papen 32 | KyoungSoo Park 33 | George Porter 34 | Luigi Rizzo 35 | Ashutosh Sabharwal 36 | Stefan Savage 37 | Michael Schapira 38 | Vyas Sekar 39 | Kun Tan 40 | Pramod Viswanath 41 | Geoff Voelker 42 | Michael Walfish 43 | Jia Wang 44 | Philip Watts 45 | David Wetherall 46 | Walter Willinger 47 | Keith Winstein 48 | Xiaowei Yang 49 | Minlan Yu 50 | Ming Zhang 51 | Lin Zhong 52 | -------------------------------------------------------------------------------- /sigcomm16-pc.txt: -------------------------------------------------------------------------------- 1 | Amin Vahdat 2 | Sachin Katti 3 | Aditya Akella 4 | Mohammad Alizadeh 5 | Katerina Argyraki 6 | Hari Balakrishnan 7 | Hitesh Ballani 8 | Sujata Banerjee 9 | Suman Banerjee 10 | Theo Benson 11 | Ranjita Bhagwan 12 | Fabián Bustamante 13 | Nandita Dukkipati 14 | Nick Feamster 15 | Nate Foster 16 | Deepak Ganesan 17 | Yashar Ganjali 18 | Phillipa Gill 19 | Sergey Gorisnky 20 | Ramesh Govindan 21 | Mark Handley 22 | Srikanth Kandula 23 | Brad Karp 24 | Ethan Katz-Bassett 25 | Teemu Koponen 26 | Swarun Kumar 27 | Alex Liu 28 | Harsha Madhyastha 29 | Bruce Maggs 30 | Ratul Mahajan 31 | Vishal Misra 32 | Michael Mitzenmacher 33 | Jeff Mogul 34 | Andrew Moore 35 | Radhika Niranjan Mysore 36 | Dave Oran 37 | Venkat Padmanabhan 38 | George Papen 39 | KyoungSoo Park 40 | Adrian Perrig 41 | Sylvia Ratnasamy 42 | Vyas Sekar 43 | Scott Shenker 44 | Ankit Singla 45 | Joshua Smith 46 | Alex Snoeren 47 | Ion Stoica 48 | Pramod Vishwanath 49 | Geoff Voelker 50 | Philip Watts 51 | David Wetherall 52 | Keith Winstein 53 | Minlan Yu 54 | Matei Zaharia 55 | Ellen Zegura 56 | Ming Zhang 57 | -------------------------------------------------------------------------------- /sigcomm16-pcpapers.txt: -------------------------------------------------------------------------------- 1 | 1 Ratul Mahajan : Don't Mind the Gap - Bridging Network-wide 2 | Objectives and Device-level Configurations. 3 | 2 Mohammad Alizadeh : Scheduling Mix-flows in Commodity Datacenters 4 | with Karuna. 5 | 3 Ethan Katz-Bassett : An Internet-Wide Analysis of Traffic Policing. 6 | 4 Aditya Akella : Fast Control Plane Analysis Using an Abstract 7 | Representation. 8 | 5 Ratul Mahajan : ProjecToR - Agile Reconfigurable Data Center 9 | Interconnect. 10 | 6 Ramesh Govindan : Evolve or Die - High-Availability Design 11 | Principles Drawn from Googles Network Infrastructure. 12 | 7 Aditya Akella : AC/DC TCP - Virtual Congestion Control Enforcement 13 | for Datacenter Networks. 14 | 8 Deepak Ganesan : Braidio - An Integrated Active-Passive Radio for 15 | Mobile Devices with Asymmetric Energy Budgets. 16 | 9 Srikanth Kandula : Dynamic Pricing and Traffic Engineering for 17 | Timely Inter-Datacenter Transfers. 18 | 10 Vyas Sekar : Via - Improving Internet Telephony Call Quality Using 19 | Predictive Relay Selection. 20 | 11 Ramesh Govindan : WebPerf - Evaluating What-If Scenarios for 21 | Cloud-hosted Web Applications. 22 | 12 Vyas Sekar : One Sketch to Rule Them All - Rethinking Network Flow 23 | Monitoring with UnivMon. 24 | 13 Sylvia Ratnasamy : The Deforestation of L2. 25 | 14 Minlan Yu : Trumpet - Timely and Precise Triggers in Data 26 | Centers. 27 | 15 Mohammad Alizadeh : NUMFabric - Fast and Flexible Bandwidth 28 | Allocation in Datacenters. 29 | 16 Nick Feamster : PISCES - A Programmable, Protocol-Independent 30 | Software Switch. 31 | 17 Mohammad Alizadeh : Packet Transactions - High-Level Programming 32 | for Line-Rate Switches. 33 | 18 Mohammad Alizadeh : Programmable Packet Scheduling at Line Rate. 34 | 19 Vyas Sekar : CS2P - Improving Video Bitrate Selection and 35 | Adaptation with Data-Driven Throughput Prediction. 36 | 20 Swarun Kumar : Eliminating Channel Feedback in Next-Generation 37 | Cellular Networks. 38 | 21 Sachin Katti : Neutral Net Neutrality. 39 | 22 Deepak Ganesan : Enabling Practical Backscatter Communication for 40 | On-body Sensors. 41 | -------------------------------------------------------------------------------- /sigcomm17-pc.txt: -------------------------------------------------------------------------------- 1 | Mohammad Alizadeh 2 | Sujata Banerjee 3 | Suman Banerjee 4 | Theo Benson 5 | John W. Byers 6 | Marco Canini 7 | Ranveer Chandra 8 | David Choffnes 9 | Mosharaf Chowdhury 10 | Mark Crovella 11 | Rubén Cuevas 12 | Italo Cunha 13 | Xenofontas Dimitropoulos 14 | Nandita Dukkipati 15 | Nate Foster 16 | Monia Ghobadi 17 | Phillipa Gill 18 | Sharon Goldberg 19 | Shyam Gollakota 20 | Arjun Guha 21 | Andreas Haeberlen 22 | Haitham Hassanieh 23 | Changhoon Kim 24 | Teemu Koponen 25 | Arvind Krishnamurthy 26 | Nikolaos Laoutaris 27 | Telefonica 28 | Olaf Maennel 29 | Ratul Mahajan 30 | Z. Morley Mao 31 | Michael Mitzenmacher 32 | Venkat Padmanabhan 33 | Dina Papagiannaki 34 | George Papen 35 | Barath Raghavan 36 | Bhaskaran Raman 37 | Pablo Rodriguez 38 | Michael Schapira 39 | Vyas Sekar 40 | Justine Sherry 41 | Ankit Singla 42 | Kun Tan 43 | Renata Teixeira 44 | Amin Vahdat 45 | Laurent Vanbever 46 | George Varghese 47 | Keith Winstein 48 | Haifeng Yu 49 | Minlan Yu 50 | James Hongyi Zeng 51 | Ming Zhang 52 | David G. Anderson 53 | Pat Bosshard 54 | Petr Kuznetsov 55 | James Larus 56 | Raluca Ada Popa 57 | Srinivasan Seshan 58 | Darryl Veitch 59 | -------------------------------------------------------------------------------- /sigmod17-pc.txt: -------------------------------------------------------------------------------- 1 | Dan Suciu 2 | Magdalena Balazinska 3 | Dan Olteanu 4 | Anastasia Ailamaki 5 | Phil Bernstein 6 | Yi Chen 7 | Carlo Curino 8 | Xin Dong 9 | Juliana Freire 10 | Benny Kimelfeld 11 | Hank Korth 12 | Ioana Manolescu 13 | Aditya Parameswaran 14 | Neoklis Polyzotis 15 | S. Sudarshan 16 | Yufei Tao 17 | Jens Teubner 18 | Ashraf Aboulnaga 19 | Eugene Agichtein 20 | Yanif Ahmad 21 | Peter Alvaro 22 | Yael Amsterdamer 23 | Nicolas Anciaux 24 | Lyublena Antova 25 | Arvind Arasu 26 | Walid Aref 27 | Peter Bailis 28 | Zhuowei Bao 29 | Senjuti Basu Roy 30 | Michael Benedikt 31 | Elisa Bertino 32 | Carsten Binnig 33 | Spyros Blanas 34 | Angela Bonifati 35 | K. Selcuk Candan 36 | Bogdan Cautis 37 | Stefano Ceri 38 | Lei Chen 39 | James Cheney 40 | Reynold Cheng 41 | Alvin Cheung 42 | John Cieslewicz 43 | Radu Ciucanu 44 | Sarah Cohen-Boulakia 45 | Dario Colazzo 46 | Tyson Condie 47 | Graham Cormode 48 | Gautam Das 49 | Mahashweta Das 50 | Sudipto Das 51 | Altigran-Soares Dasilva 52 | Daniel Deutch 53 | Alin Deutsch 54 | Jens Dittrich 55 | Harish Doraiswamy 56 | Eduard Dragut 57 | Jennie Duggan 58 | Curtis Dyreson 59 | Wenfei Fan 60 | Alan Fekete 61 | Avrilia Floratou 62 | Jing Gao 63 | Wolfgang Gatterbauer 64 | Tingjian Ge 65 | Rainer Gemulla 66 | Boris Glavic 67 | François Goasdoué 68 | Todd Green 69 | Raman Grover 70 | Torsten Grust 71 | Oktie Hassanzadeh 72 | Michael Hay 73 | Thomas Heinis 74 | Melanie Herschel 75 | Katja Hose 76 | Bill Howe 77 | Stratos Idreos 78 | Ihab Ilyas 79 | Zachary Ives 80 | H. V. Jagadish 81 | Alekh Jindal 82 | Srikanth Kandula 83 | Yaron Kanza 84 | Konstantinos Karanasos 85 | Asterios Katsifodimos 86 | Yannis Katsis 87 | Raghav Kaushik 88 | Oliver Kennedy 89 | Kristian Kersting 90 | George Konstantinidis 91 | Lucja Kot 92 | Paraschos Koutris 93 | Tim Kraska 94 | Rajasekar Krishnamurthy 95 | Arun Kumar 96 | Yongchul Kwon 97 | Alexandros Labrinidis 98 | Julien Leblay 99 | Wolfgang Lehner 100 | Alberto Lerner 101 | Justin Levandoski 102 | Chen Li 103 | Feifei Li 104 | Guoliang Li 105 | Jianxin Li 106 | Yang Li 107 | Yinan Li 108 | Xuemin Lin 109 | Chengfei Liu 110 | Ling Liu 111 | Ziyang Liu 112 | Ashwin Machanavajjhala 113 | Nikos Mamoulis 114 | Stefan Manegold 115 | Davide Martinenghi 116 | Florent Masseglia 117 | Giansalvatore Mecca 118 | Alexandra Meliou 119 | Sebastian Michel 120 | Tova Milo 121 | Mohamed Mokbel 122 | Bongki Moon 123 | Ingo Müller 124 | Arnab Nandi 125 | Thomas Neumann 126 | Frank Neven 127 | Beng Chin Ooi 128 | Carlos Ordonez 129 | Vincent Oria 130 | Giorgio Orsi 131 | M. Tamer Ozsu 132 | Stavros Papadopoulos 133 | Yannis Papakonstantinou 134 | Stelios Paparizos 135 | Paolo Papotti 136 | Jignesh Patel 137 | Andrew Pavlo 138 | Peter Pietzuch 139 | Holger Pirk 140 | Dan Ports 141 | Elisa Quintarelli 142 | Tilmann Rabl 143 | Vibhor Rastogi 144 | Theodoros Rekatsinas 145 | Matthias Renz 146 | Sudeepa Roy 147 | Elke Rundensteiner 148 | Florin Rusu 149 | Mohammad Sadoghi 150 | Semih Salihoglu 151 | Carlo Sartiani 152 | Mohamed Sarwat 153 | Sebastian Schelter 154 | Russell Sears 155 | Pierre Senellart 156 | Emad Soroush 157 | Mike Spear 158 | Julia Stoyanovich 159 | Ryan Stutsman 160 | Letizia Tanca 161 | Nan Tang 162 | Nesime Tatbul 163 | Arash Termehchy 164 | Martin Theobald 165 | Pinar Tozun 166 | Anthony K. H. Tung 167 | Federico Ulliana 168 | Vasilis Vassalos 169 | Yannis Velegrakis 170 | Stratis Viglas 171 | Daisy Wang 172 | Haixun Wang 173 | Hui Wang 174 | Jiannan Wang 175 | Raymond Wong 176 | Eugene Wu 177 | Wentao Wu 178 | Cong Yu 179 | Jeffery Xu Yu 180 | Bo Zhao 181 | 182 | -------------------------------------------------------------------------------- /sosp13-pc.txt: -------------------------------------------------------------------------------- 1 | David G. Andersen , CMU 2 | Philip Levis , Stanford 3 | Herbert Bos , VU 4 | Shan Lu , University of Wisconsin 5 | George Candea , EPFL 6 | James Mickens , MSR 7 | Haibo Chen , Shanghai Jiao Tong University 8 | Robert Tappan Morris , MIT 9 | Mike Dahlin , Google and UT Austin 10 | John Ousterhout , Stanford 11 | Kevin Elphinstone , UNSW and NICTA 12 | Robbert van Renesse , Cornell 13 | Bryan Ford , Yale 14 | Timothy Roscoe , ETH Zurich 15 | Steven Hand , Cambridge 16 | Mike Swift , University of Wisconsin 17 | Jon Howell , MSR 18 | Michael Walfish , UT Austin 19 | Rebecca Isaacs , MSR 20 | Helen Wang , MSR 21 | Anthony Joseph , UC Berkeley 22 | John Wilkes , Google 23 | Sam King , UIUC 24 | Nickolai Zeldovich , MIT 25 | Eddie Kohler , Harvard 26 | Lidong Zhou , MSR Asia 27 | Arvind Krishnamurthy , University of Washington 28 | Yuanyuan Zhou 0001 , UCSD 29 | -------------------------------------------------------------------------------- /sosp15-pc.txt: -------------------------------------------------------------------------------- 1 | Marcos K. Aguilera, VMware 2 | Gustavo Alonso, ETH Zurich 3 | Andrew Baumann, MSR Redmond 4 | Herbert Bos, Vrije Universiteit 5 | Eric Brewer, UC Berkeley, Google 6 | Miguel Castro, MSR Cambridge 7 | Luis Ceze, U.Washington 8 | Haibo Chen, Shanghai Jiao Tong 9 | Landon Cox, Duke 10 | Angela Demke Brown, U.Toronto 11 | Ulfar Erlingsson, Google 12 | Alexandra Fedorova, Simon Fraser 13 | Bryan Ford, Yale 14 | Steven Hand, Google 15 | Tim Harris, Oracle Labs 16 | Michael Kaminsky, Intel Labs 17 | Brad Karp, UCL 18 | Terence Kelly, HP Labs 19 | Eddie Kohler, Harvard 20 | James Larus, EPFL 21 | Shan Lu, U. Chicago 22 | Petros Maniatis, Google 23 | Jeff Mogul, Google 24 | Jason Nieh, Columbia 25 | Steve Swanson, UC San Diego 26 | Mike Swift, U.Wisconsin 27 | Michael Walfish, NYU 28 | Hakim Weatherspoon, Cornell 29 | Emmett Witchel, UT Austin 30 | Nickolai Zeldovich, MIT 31 | -------------------------------------------------------------------------------- /sosp17-pc.txt: -------------------------------------------------------------------------------- 1 | Marcos K. Aguilera, VMware Research Group 2 | Aditya Akella, University of Wisconsin–Madison 3 | Lorenzo Alvisi, Cornell University 4 | Remzi Arpaci-Dusseau, University of Wisconsin–Madison 5 | Emery Berger, UMass Amherst 6 | George Candea, EPFL 7 | Miguel Castro, Microsoft 8 | Haibo Chen, Shanghai Jiao Tong University 9 | Wenguang Chen, Tsinghua University 10 | Peter Chen, University of Michigan 11 | Byung-Gon Chun, Seoul National University 12 | Landon Cox, Duke University 13 | Mike Dahlin, Google 14 | Peter Druschel, MPI-SWS 15 | Jason Flinn, University of Michigan 16 | Roxana Geambasu, Columbia University 17 | Johannes Gehrke, Microsoft 18 | Cristiano Giuffrida, Vrije Universiteit Amsterdam 19 | Ashvin Goel, University of Toronto 20 | Andreas Haeberlen, University of Pennsylvania 21 | Tim Harris, Oracle 22 | Gernot Heiser, UNSW Australia and Data61 23 | Henry Hoffmann, University of Chicago 24 | Jon Howell, Google 25 | Rebecca Isaacs, Google 26 | Frans Kaashoek, MIT 27 | Manos Kapritsos, University of Michigan 28 | Brad Karp, University College London 29 | Eddie Kohler, Harvard University 30 | Ramakrishna Kotla, Amazon 31 | Arvind Krishnamurthy, University of Washington 32 | Jay Lorch, Microsoft 33 | Shan Lu, University of Chicago 34 | James Mickens, Harvard University 35 | Thomas Moscibroda, Microsoft 36 | Madanlal Musuvathi, Microsoft 37 | John Ousterhout, Stanford University 38 | Simon Peter, University of Texas at Austin 39 | Don Porter, UNC-Chapel Hill 40 | Dan Ports, University of Washington 41 | Michael Reiter, UNC-Chapel Hill 42 | Rodrigo Rodrigues, IST (U. Lisboa) and INESC-ID 43 | Chris Rossbach, University of Texas at Austin 44 | Marco Serafini, Qatar Computing Research Institute 45 | Mark Silberstein, Technion-Israel Institute of Technology 46 | Ion Stoica, UC Berkeley 47 | Michael Swift, University of Wisconsin–Madison 48 | Doug Terry, Amazon Web Services 49 | Robbert van Renesse, Cornell University 50 | Geoffrey M. Voelker, UC San Diego 51 | Michael Walfish, New York University 52 | Junfeng Yang, Columbia University 53 | Ding Yuan, University of Toronto 54 | Nickolai Zeldovich, MIT 55 | Yuanyuan Zhou, UC San Diego 56 | -------------------------------------------------------------------------------- /vldb17-pc.txt: -------------------------------------------------------------------------------- 1 | Alan Fekete - Sydney University 2 | Alekh Jindal - Microsoft 3 | Alexander Löser - Beuth University of Applied Sciences Berlin 4 | Alexandros Labrinidis - University of Pittsburgh 5 | Allison Holloway - Oracle 6 | Angela Bonifati - Université Lyon 1 7 | Ansger Scherp - Kiel University 8 | Anthony Tung - NUS Singapore 9 | Aris Anagnostopoulos - Sapienza University of Rome 10 | Arnab Nandi - Ohio State University 11 | Arvind Arasu - Microsoft Research 12 | Asterios Katsifodimos - TU Berlin 13 | Atsuyuki Morishima - University of Tsukuba 14 | Avrilia Floratou - IBM Research Almaden 15 | Azza Abouzied - NYU Abu Dhabi 16 | Barzan Mozafari - University of Michigan 17 | Bernhard Seeger - University of Marburg 18 | Berthold Reinwald - IBM Research Almaden 19 | Bin Cui - Peking University 20 | Bingsheng He - Nanyang Technological University 21 | Bolin Ding - Microsoft Research 22 | Bongki Moon - SNU 23 | Boris Glavic - Illinois Institute of Technology 24 | Carmem Hara - Universidade Federal do Parana 25 | Chee-Yong Chan - National University of Singapore 26 | Chengkai Li - University of Texas at Arlington 27 | Chi Wang - Microsoft Research 28 | Chris Jermaine - Rice University 29 | Christian König - Microsoft Research 30 | Cong Yu - Google 31 | Curtis Dyreson - Utah State University 32 | Cyrus Shahabi - University of Southern California 33 | Daisy Zhe - Wang - University of Florida 34 | Dan Olteanu - University of Oxford 35 | Daniel de Oliveira - Universidade Federal Fluminense 36 | David Koop - University of Massachusetts 37 | Davide Mottin - HPI 38 | Dmitri Kalashnikov - AT&T Labs Research 39 | Eli Cortez - Microsoft 40 | Elisa Bertino - Purdue University 41 | Eric Lo - Hong Kong Polytechnic University 42 | Essam Mansour - Qatar Computing Research Institute 43 | Eugene Wu - Columbia University 44 | Fabrizio Silvestri - Yahoo Research London 45 | Fei Chiang - McMaster University 46 | Feifei Li - University of Utah 47 | Florent Masseglia - INRIA 48 | Florian Kerschbaum - SAP 49 | George Papadakis - University of Athens 50 | Georgia Koutrika - Hewlett Packard Labs 51 | Giansalvatore Mecca - University Basilicata 52 | Goetz Graefe - Google 53 | Guoliang Li - Tsinghua University 54 | Hakan Ferhatosmanoglu - Bilkent University 55 | Hannes Voigt - TU Dresden 56 | Hannes Mühleisen - CWI 57 | Harumi Kuno - Hewlett Packard Labs 58 | Henrik Muehe - Google 59 | Holger Pirk - MIT 60 | Huy Vo - CUNY-CCNY 61 | Ihab Ilyas - University of Waterloo 62 | Indrakshi Ray - Colorado State University 63 | Ingmar Weber - Qatar Computing Research Institute 64 | Ippokratis Pandis - Amazon Web Services 65 | Ira Assent - Aarhus University 66 | Jaewoo Kang - Korea University 67 | James Cheng - Chinese University of Hong Kong 68 | Jeff Pound - SAP 69 | Jeffrey Yu - Chinese University of Hong Kong 70 | Jennie Duggan - Northwestern University 71 | Jens Teubner - TU Dortmund 72 | Jiaheng Lu - University of Helsinki 73 | Jianliang Xu - Hong Kong Baptist University 74 | Jignesh Patel - University of Wisconsin 75 | Johann Gamper - Free University of Bozen-Bolzano 76 | Joseph Gonzalez - UC Berkeley 77 | Julia Stoyanovich - Drexel University 78 | Julien Leblay - AIST, Japan 79 | Kai-Uwe Sattler - TU Ilmenau 80 | Karthik Sankaranarayanan - IBM Research India 81 | Katja Hose - Aalborg University 82 | Khuzaima Daudjee - University of Waterloo 83 | Konstantinos Karanasos - Microsoft 84 | Kostis Kyzirakos - Oracle Labs 85 | Lee Mong Li - NUS Singapore 86 | Lefteris Sidirourgos - CWI 87 | Lei Zou - Peking University 88 | Li Xiong - Emory University 89 | Luc Bouganim - INRIA 90 | Luciano Barbosa - IBM Research Brazil 91 | Lucja Kot - Cornell University 92 | Mahashweta Das - Hewlett Packard Labs 93 | Marco Serafini - Qatar Computing Research Institute 94 | Martin Kersten - CWI 95 | Masatoshi Yoshikawa - Kyoto University 96 | Maurice Van Keulen - TU Twente 97 | Maya Ramanath - IIT Delhi 98 | Meichun Hsu - Hewlett Packard Labs 99 | Meikel Poess - Oracle 100 | Melanie Herschel - University of Stuttgart 101 | Michael Benedikt - Oxford University 102 | Michael Bohlen - University of Zurich 103 | Michael Hay - Colgate University 104 | Michael Grossniklaus - University of Konstanz 105 | Mirella Moro - Universidade Federal de Minas Gerais 106 | Mohamed Eltabakh - Worcester Polytechnic Institute 107 | Mohamed Mokbel - University of Minnesota 108 | Mohamed Sarwat - Arizona State University 109 | Mohammad Sadoghi - Purdue University 110 | Mourad Ouzzani - Qatar Computing Research Institute 111 | Murat Kantarcioglu - UT Dallas 112 | Nan Zhang - George Washington University 113 | Nick Koudas - University of Toronto 114 | Nicolas Bruno - Microsoft Research 115 | Nikolaus Augsten - University of Salzburg 116 | Nikos Mamoulis - Hong Kong University 117 | Norman Paton - University of Manchester 118 | Oliver Kennedy - University at Buffalo 119 | Panagiotis Papapetrou - Stockholm University 120 | Panos Kalnis - KAUST 121 | Panos Chrysanthis - University of Pittsburgh 122 | Paolo Merialdo - Roma Tre University 123 | Paris Koutris - University of Wisconsin-Madison 124 | Patricia Arocena - University of Toronto 125 | Peter Fischer - Universität Freiburg 126 | Peter Bailis - Stanford University 127 | Peter Alvaro - University of California, Santa Cruz 128 | Philippe Cudre-Mauroux - University of Fribourg 129 | Pierangela Samarati - University of Milan 130 | Pinar Tozun - IBM Research 131 | Raghav Kaushik - Microsoft Research 132 | Raluca Ada Popa - UC Berkeley 133 | Raymond Ng - University of British Columbia 134 | Reynold Cheng - Hong Kong University 135 | Ricardo Torres - UNICAMP Brazil 136 | S. Sudarshan - IIT Bombay 137 | Sai Wu - Zhejiang University 138 | Sebastian Michel - University of Kaiserslautern 139 | Selcuk Candan - Arizona State University 140 | Semih Salihoglu - University of Waterloo 141 | Senjuti Basu Roy - New Jersey Institute of Technology 142 | Seung-won Hwang - Yonsei University 143 | Sourav Bhowmick - Nanyang Technological University 144 | Spyros Blanas - Ohio State University 145 | Srikanta Bedathur - IBM Research India 146 | Stavros Papadopoulos - Intel Labs and MIT 147 | Stefanie Scherzinger - Ostbayerische Technische Hochschule Regensburg 148 | Stratis Viglas - University of Edinburgh 149 | Sudeepa Roy - Duke University 150 | Sudipto Das - Microsoft Research 151 | Sven Helmer - Free University of Bozen-Bolzano 152 | Tamer Ozsu - University of Waterloo 153 | Theodoros Rekatsinas - Stanford University 154 | Thomas Heinis - Imperial College 155 | Todd Green - Logicblox 156 | Torsten Grust - University of Tuebingen 157 | Tyson Condie - UCLA 158 | Umar Farooq Minhas - IBM Research 159 | Uwe Röhm - University of Sydney 160 | Verena Kantere - University of Geneva 161 | Viktor Leis - TU München 162 | Vivek Narasayya - Microsoft Research 163 | Wei Wang - University of New South Wales 164 | Wenchao Zhou - Georgetown University 165 | Wendy Wang - Stevens Institute of Technology 166 | Xiaochun Yang - Northeastern University, China 167 | Xiaodong Zhang - Ohio State University 168 | Xiaofang Zhou - University of Queensland 169 | Xiaohui Yu - York University 170 | Xiaoyang Wang - Fudan University 171 | Xin Luna Dong - Google 172 | Yannis Manolopoulos - Aristotle University of Thessaloniki 173 | Yannis Velegrakis - University of Trento 174 | Yeye He - Microsoft Research 175 | Yi Chen - New Jersey Institute of Technology 176 | Yinan Li - Microsoft Research 177 | Yizhou Sun - Northeastern University 178 | Yoshiharu Ishikawa - Nagoya University 179 | Yuanyuan Tian - IBM Research (Almaden) 180 | Yufei Tao - University of Queensland 181 | Zhao Cao - Beijing Institute of Technology 182 | Zhifeng Bao - RMIT University 183 | Zoi Kaoudi - Qatar Computing Research Institute 184 | Adam Silberstein - Trifacta 185 | Albert Maier - IBM Germany 186 | Amit Rustagi - SanDisk 187 | Badrish Chandramouli - Microsoft Research 188 | Benjamin Schlegel - Oracle 189 | Berthold Reinwald - IBM Almaden 190 | Brian Cooper - Google 191 | Donald Kossmann - ETH Zuerich 192 | Fatma Özcan - IBM Research 193 | Gjergji Kasneci - Schufa Holding AG 194 | Goetz Graefe - Google 195 | Gregor Hackenbroich - SAP 196 | James Terwilliger - Microsoft 197 | Jun Rao - Confluent 198 | Justin Levandoski - Microsoft Research 199 | Laura Haas - IBM Almaden 200 | Matthias Weidlich - Humboldt-Universität zu Berlin 201 | Michael Waas - Datometry Inc. 202 | Niloy Mukherjee - LinkedIn 203 | Reynold Xin - Databricks 204 | Ryan Stutsman - University of Utah 205 | Sang Kyun Cha - Seoul National University 206 | Sergey Melnik - Google 207 | Tamraparni Dasu - AT&T Research 208 | Wolfgang Lehner - Technische Universität Dresden 209 | Zbigniew Jerzak - SAP 210 | --------------------------------------------------------------------------------