diff --git a/src/data/projects.ts b/src/data/projects.ts index 5e9d1f5..b6b9e49 100644 --- a/src/data/projects.ts +++ b/src/data/projects.ts @@ -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", @@ -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", @@ -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", @@ -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", @@ -111,7 +126,8 @@ const projects: Project[] = [ researchStatus: "r&d", status: "active", type: "funded", - } + }, + diff --git a/src/pages/research/projects/index.mdx b/src/pages/research/projects/index.mdx index f38e1e6..5864e3f 100644 --- a/src/pages/research/projects/index.mdx +++ b/src/pages/research/projects/index.mdx @@ -8,4 +8,4 @@ import projects from "@site/src/data/projects"; # Projects - + diff --git a/src/types.ts b/src/types.ts index 201a032..d39d613 100644 --- a/src/types.ts +++ b/src/types.ts @@ -47,6 +47,7 @@ export type ProjectId = | "fadas" | "storehub" | "fastensor" + | "sagest"; export type Project = { id: ProjectId;