Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions src/data/publications.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { ProjectId, Publication, PublicationTag } from "../types";

const publications: Publication[] = [

{
"authors": ["A. Salimiparsa", "N. Lewis", "J. L. Bez", "S. Byna"],
"title": "A 360◦ Survey on Reconfigurability of HPC Storage Systems for Efficient I/O",
Expand All @@ -27,6 +28,58 @@ const publications: Publication[] = [
"pdf": "https://dl.acm.org/doi/epdf/10.1145/3805687.3806261"
}
},
{
"authors":
["J. L. Bez",
"H. Tang",
"C. Weng",
"S. Byna",
],
"title": "Data Management in the Continuum: Cross-facility Object-based Data Transfers",
"venue": "37th IEEE/SBC International Symposium on Computer Architecture and High Performance Computing (SBAC-PAD 2025)",
"type": "Conference",
"date": "2025",
"tags": ["Data Management"],
"links": {
"paper": "https://ieeexplore.ieee.org/document/11264731"
}
},
{
"authors":
["D. Djebarov",
"R. Liem",
"S. Neuwirth",
"J. L. Bez",
"S. Byna",
],
"title": "Streamlining HDF5’s AI Workloads Benchmarking",
"venue": "6th Workshop on Extreme-Scale Storage and Analysis, in conjunction with IEEE IPDPS 2025",
"type": "Workshop",
"date": "2025",
"tags": ["Benchmarking", "HDF5"],
"links": {
}
},
{
"authors":
["D. K. Sung",
"S. Kim",
"S. Lee",
"H. Tang",
"A. Sim",
"K. Wu",
"S. Byna",
"Y. Son"
],
"title": "Regen: An object layout regenerator on large-scale production HPC systems",
"venue": "Future Generation Computer Systems, Volume 171",
"type": "Journal",
"date": "2025",
"tags": ["HPC", "Storage"],
"links": {
"paper": "https://www.sciencedirect.com/science/article/abs/pii/S0167739X25001256"
}
},
{
"authors":[
"G. Song",
Expand Down
4 changes: 4 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,10 @@ export type PublicationAuthor =
|"G. Song"
|"Z. Lin"
|"D. Mattson"
|"C. Weng"
|"D. Djebarov"
|"R. Liem"
|"S. Neuwirth"
;

export type PublicationTag =
Expand Down
Loading