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
68 changes: 42 additions & 26 deletions src/data/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,26 @@ import { Project, ProjectId } from "../types";

const projects: Project[] = [



{
id: "pdc",
name: "PDC",
title: "Proactive Data Containers",
shortDescription:
"Formulation of object-oriented PDCs and their mapping in different levels of the exascale storage hierarchy; Efficient strategies for moving data in deep storage hierarchies using PDCs. Techniques for transforming and reorganizing data based on application requirements. Novel analysis paradigms for enabling data transformations and user-defined analysis on data in PDCs",
link: "https://sdm.lbl.gov/pdc/",
sourceLink: "https://github.com/hpc-io/pdc",
isFeatured: true,
isOurs: true,
researchStatus: "r&d",
status: "active",
type: "funded",
},
{
id: "aidrin",
name: "AIDRIN",
title: "AI Data Readiness Inpector",
title: "AI Data Readiness Inspector",
shortDescription:
"AIDRIN is a framework designed accross centralized and decentralized (eg: federated learning) workflows to assess the readiness of data for AI applications, ensuring that datasets meet quality and compliance standards.",
link: "/research/projects/aidrin",
Expand All @@ -17,18 +33,17 @@ const projects: Project[] = [
type: "funded",
},
{
id: "pdc",
name: "PDC",
title: "Proactive Data Containers",
shortDescription:
"Formulation of object-oriented PDCs and their mapping in different levels of the exascale storage hierarchy; Efficient strategies for moving data in deep storage hierarchies using PDCs. Techniques for transforming and reorganizing data based on application requirements. Novel analysis paradigms for enabling data transformations and user-defined analysis on data in PDCs",
link: "https://sdm.lbl.gov/pdc/",
sourceLink: "https://github.com/hpc-io/pdc",
isFeatured: true,
isOurs: true,
id: "sagest",
name: "SAGEST",
title: "SAGEST Center",
shortDescription:"Developing a trustworthy predictive system that utilizes embedded near-ab-initio simulations to make predictions with quantified uncertainty in extreme regimes where physical experimental validation is unavailable.",
link: "https://sagest.virginia.edu/",
isFeatured: false,
isOurs: false,
researchStatus: "r&d",
status: "active",
type: "funded",

},
{
id: "h5bench",
Expand All @@ -44,20 +59,6 @@ const projects: Project[] = [
status: "active",
type: "funded",
},
{
id:"drishti",
name: "Drishti",
title: "Drishti: I/O Insights for All",
shortDescription:
"Dristhi is a novel interactive web-based analysis framework to visualize I/O traces, highlight bottlenecks, and help understand the I/O behavior of scientific applications.",
link: "https://drishti-io.readthedocs.io/en/latest/",
sourceLink: "https://github.com/hpc-io/drishti",
isFeatured: true,
isOurs: true,
researchStatus: "r&d",
status: "active",
type: "funded",
},
{
id: "s2d2",
name: "S2-D2",
Expand Down Expand Up @@ -91,8 +92,22 @@ const projects: Project[] = [
title: "StoreHub: A Community Infrastructure for Shaping the Future of Data Storage Research",
shortDescription:
"This project focuses on planning activities associated with the realization of the StoreHub research infrastructure, which aims to support next-generation data storage research. The infrastructure is envisioned to provide a secure, flexible, and collaborative platform for researchers to design, test, and improve data storage technologies.",
link: "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2346505",
link: "https://grc.iit.edu/research/projects/storehub/",
isFeatured: false,
isOurs: false,
researchStatus: "r&d",
status: "active",
type: "funded",
},
{
id:"drishti",
name: "Drishti",
title: "Drishti: I/O Insights for All",
shortDescription:
"Dristhi is a novel interactive web-based analysis framework to visualize I/O traces, highlight bottlenecks, and help understand the I/O behavior of scientific applications.",
link: "https://drishti-io.readthedocs.io/en/latest/",
sourceLink: "https://github.com/hpc-io/drishti",
isFeatured: true,
isOurs: true,
researchStatus: "r&d",
status: "active",
Expand All @@ -111,7 +126,8 @@ const projects: Project[] = [
researchStatus: "r&d",
status: "active",
type: "funded",
}
},




Expand Down
2 changes: 1 addition & 1 deletion src/pages/research/projects/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ import projects from "@site/src/data/projects";

# Projects

<ProjectList data={projects} isSorted={true} />
<ProjectList data={projects} isSorted={false} />
1 change: 1 addition & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export type ProjectId =
| "fadas"
| "storehub"
| "fastensor"
| "sagest";

export type Project = {
id: ProjectId;
Expand Down