-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (111 loc) · 4.24 KB
/
Copy pathindex.html
File metadata and controls
133 lines (111 loc) · 4.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/style.css">
<meta charset="UTF-8">
<title>Dylan McKellips Home</title>
<meta name="description" content="Portfolio of Dylan McKellips: computer science and math projects, research papers, and photographs">
<meta name="keywords" content="Dylan McKellips, computer science, math, portfolio, research, projects">
<link rel="icon" type="image/png" href="/images/butterfly.png">
<script src="/components/topnav.js"></script>
</head>
<body>
<!-- Top Navigation Bar -->
<div id="topnav-placeholder"></div>
<!-- Sidebar -->
<!-- Main -->
<div class="main-container">
<div id="sidebar"></div>
<!-- Main Content -->
<div class="main">
<p> I am a Computer Science PhD Student at the University of Utah, studying under <a href="https://sullivan.cs.utah.edu/#!/" target="_blank" rel="noopener noreferrer">Dr. Blair D. Sullivan.</a> I focus on the design and analysis of efficient graph algorithms, with a focus on parameterized or structural approaches. Email me if you would like to think about math or go climbing together. </p>
<h2>Publications</h2>
<ul>
<li>
<strong>Symmetric Locality: Definition and Initial Results.</strong><br>
G. Escalona, D. McKellips, C. Ding<br>
SC24-W 2024 | <a href="https://arxiv.org/abs/2407.19291v3" target="_blank" rel="noopener noreferrer">arXiv</a>
</li>
</ul>
<h2>Manuscripts</h2>
<ul>
<li>
<strong>A Critique of Deng’s "P = NP."</strong><br>
I. Humphreys, M. Iceland, H. Liuson, D. McKellips, L. Sciortino<br>
2025 | <a href="https://arxiv.org/abs/2507.09018" target="_blank" rel="noopener noreferrer">arXiv</a>
</li>
<li>
<strong>3-Colorings of Diameter 2 Graphs.</strong><br>
D. McKellips<br>
2025 | <a href="https://www.sas.rochester.edu/mth/undergraduate/honorspaperspdfs/dylanmckellips2025.pdf" target="_blank" rel="noopener noreferrer">rochester.edu</a>
</li>
<li>
<strong>DMC4ML: Data Movement Complexity for Machine Learning.</strong><br>
C. Ding, C. Kanan, D. McKellips, T. Ozawa, A. Shahmirza, W. Smith<br>
2023 | <a href="https://arxiv.org/abs/2312.14441" target="_blank" rel="noopener noreferrer">arXiv</a>
</li>
</ul>
<h2>Teaching Experience</h2>
<ul>
<li>
<strong>Spring 2026:</strong> Graduate Teaching Assistant for <i>COMP 5360: Introduction to Data Science</i>,
Professors Kate Isaacs & Tom Alberts, University of Utah
</li>
<li>
<strong>Spring 2025:</strong> Teaching Assistant for <i>CSC 242: Artificial Intelligence</i>,
Professor Adam Purtee, University of Rochester
</li>
<li>
<strong>Fall 2024:</strong> Teaching Assistant for <i>CSC 282: Design and Analysis of Efficient Algorithms</i>,
Professor Daniel Stefankovic, University of Rochester
</li>
<li>
<strong>Spring 2024:</strong> Teaching Assistant for <i>CSC 242: Artificial Intelligence</i>,
Professor Daniel Gildea, University of Rochester
</li>
<li>
<strong>Fall 2023:</strong> Teaching Assistant for <i>CSC 242: Artificial Intelligence</i>,
Professor George Ferguson, University of Rochester
</li>
</ul>
<h2>Talks</h2>
<ul>
<li>
Dylan McKellips
<i>GMTrans: Symmetric Locality: Definition and Initial Results.</i>
Presented at MEMO 24, in conjunction with SC24, Atlanta, GA.
</li>
</ul>
</div>
</div>
<script>
async function includeHTML(id, file) {
const resp = await fetch(file);
const html = await resp.text();
document.getElementById(id).innerHTML = html;
}
includeHTML("sidebar", "/components/sidebar.html");
includeHTML("topnav-placeholder", "/components/topnav.html", function() {
initTopnav(); // This calls the animation
});
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Dylan McKellips",
"url": "https://dylanmckellips.github.io",
"sameAs": [
"https://www.linkedin.com/in/dylan-mckellips-82b57b220/",
"https://github.com/dylanmckellips",
"https://scholar.google.com/citations?user=TfZgZ9YAAAAJ&hl=en&oi=ao"
],
"jobTitle": "Computer Science and Math Researcher",
"worksFor": {
"@type": "Organization",
"name": "University of Utah"
}
}
</script>
</body>
</html>