Skip to content

Commit

Permalink
Publication fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
izzet committed Jun 13, 2024
1 parent 8219157 commit 41bbb23
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 23 deletions.
33 changes: 11 additions & 22 deletions src/data/publications.ts
Original file line number Diff line number Diff line change
@@ -1,29 +1,22 @@
import { ProjectId, Publication, PublicationTag } from "../types";

const publications: Publication[] = [

{
authors: [
"J. Cernuda",
"J. Ye",
"A. Kougkas",
"X.-H. Sun",
],
authors: ["J. Cernuda", "J. Ye", "A. Kougkas", "X.-H. Sun"],
title:
"HStream: A hierarchical data streaming engine for high-throughput scientific applications",
"HStream: A hierarchical data streaming engine for high-throughput scientific applications",
venue:
"The 53th International Conference on Parallel Processing (ICPP 2024)",
"The 53th International Conference on Parallel Processing (ICPP 2024)",
type: "Conference",
date: "Aug, 2024",
tags: [
"Data Streaming",
"HPC",
"hierarchical storage",
"elastic system",
"in-transit Computing",
"Hierarchical Storage",
"Elastic System",
"In-Transit Computing",
],
links: {
},
links: {},
},
{
authors: [
Expand All @@ -38,17 +31,13 @@ const publications: Publication[] = [
"B. Nicolae",
],
title:
"Viper: A High-Performance I/O Framework for Transparently Updating, Storing, and Transferring Deep Neural Network Models",
"Viper: A High-Performance I/O Framework for Transparently Updating, Storing, and Transferring Deep Neural Network Models",
venue:
"The 53th International Conference on Parallel Processing (ICPP 2024)",
"The 53th International Conference on Parallel Processing (ICPP 2024)",
type: "Conference",
date: "Aug, 2024",
tags: [
"DNN model transferring",
"Inference serving",
],
links: {
},
tags: ["DNN Model Transferring", "Inference Serving"],
links: {},
},
{
authors: [
Expand Down
17 changes: 16 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@ export type Job = {
// type: "full-time" | "part-time" | "internship";
};

export type MemberLinkType = "website" | "email" | "github" | "linkedin" | "twitter" | "scholar";
export type MemberLinkType =
| "website"
| "email"
| "github"
| "linkedin"
| "twitter"
| "scholar";

export type Member = {
affiliation?: string;
Expand Down Expand Up @@ -70,6 +76,7 @@ export type PublicationAuthor =
| "A. Haider"
| "A. Kougkas"
| "A. Kravtsov"
| "A. Nigmetov"
| "A. R. Blatecky"
| "A. Torres"
| "A. Y. Zomaya"
Expand All @@ -78,6 +85,7 @@ export type PublicationAuthor =
| "B. Alunkal"
| "B. Feng"
| "B. Long"
| "B. Nicolae"
| "B. Scholz"
| "B. Toonen"
| "B. Wang"
Expand All @@ -104,6 +112,7 @@ export type PublicationAuthor =
| "D. Khettry"
| "D. Kimpe"
| "D. Li"
| "D. Morozov"
| "D. Ren"
| "D. Rover"
| "D. Rudd"
Expand Down Expand Up @@ -214,6 +223,7 @@ export type PublicationAuthor =
| "N. Sun"
| "N. Tallent"
| "N. Zhang"
| "O. Yildiz"
| "P. C. Roth"
| "P. Challa"
| "P. Chen"
Expand Down Expand Up @@ -273,6 +283,7 @@ export type PublicationAuthor =
| "T. Kasampalis"
| "T. Ke"
| "T. Matsui"
| "T. Peterka"
| "T. Y. Li"
| "V. K. Gurbani"
| "V. K. Naik"
Expand Down Expand Up @@ -369,6 +380,7 @@ export type PublicationTag =
| "Context Awareness"
| "Coeus"
| "DNN"
| "DNN Model Transferring"
| "DRAM"
| "Darshan"
| "Data Access Pattern"
Expand All @@ -386,6 +398,7 @@ export type PublicationTag =
| "Data Reorganization"
| "Data Replication"
| "Data Scoring"
| "Data Streaming"
| "Data-Aware"
| "Data-Centric"
| "Data-Centric Architecture"
Expand All @@ -407,6 +420,7 @@ export type PublicationTag =
| "Dynamic Programming"
| "Efficiency"
| "Elastic Storage"
| "Elastic System"
| "Emerging Architectures"
| "Emerging Technologies"
| "Energy-Aware I/O"
Expand Down Expand Up @@ -445,6 +459,7 @@ export type PublicationTag =
| "I/O Optimization"
| "I/O Stack Tuning"
| "In-Transit Computing"
| "Inference Serving"
| "Integrated Workflow"
| "Intelligent Selection"
| "KVS"
Expand Down

0 comments on commit 41bbb23

Please sign in to comment.