Skip to content

Commit 07c9449

Browse files
committed
Accelerator Project updated
1 parent 86b6117 commit 07c9449

1 file changed

Lines changed: 28 additions & 16 deletions

File tree

src/Projects.jsx

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,18 @@ const PROJECTS = [
3131
},
3232
{
3333
id: 3,
34+
category: "Hardware",
35+
title: "RISC-V-Complete-Multicycle-Processor Design",
36+
tag: "VLSI design and verification",
37+
image: "https://raw.githubusercontent.com/DevPro13/RISC-V-Complete-Multicycle-Processor-Design/refs/heads/main/Img/risc-v%20complete.jpg",
38+
bio: "A complete multi-cycle processor was modelled and tested using System-Verilog.",
39+
details: "https://raw.githubusercontent.com/DevPro13/RISC-V-Complete-Multicycle-Processor-Design/refs/heads/main/README.md",
40+
stack: ["SystemVerilog", "ModelSim", "RISC-V", "TestBench"],
41+
year: "2024",
42+
link: "https://github.com/DevPro13/RISC-V-Complete-Multicycle-Processor-Design",
43+
},
44+
{
45+
id: 4,
3446
category: "Software",
3547
title: "Dijkstra-s-Algorithm-Visualizer",
3648
tag: "C++, Data Structure",
@@ -42,7 +54,19 @@ const PROJECTS = [
4254
link: "https://github.com/DevPro13/Dijkstra-s-Algorithm-Visualizer",
4355
},
4456
{
45-
id: 4,
57+
id: 5,
58+
category: "Hardware",
59+
title: "Design and Verification of a Fixed Point Attention Accelerator",
60+
tag: "AI Accelerator, SYstemVerilog, Attention Mechanism",
61+
image: "https://raw.githubusercontent.com/DevPro13/Design-and-Verification-of-a-Fixed-Point-Attention-Accelerator/refs/heads/main/inputfiles/AttentionMechanismIllustration.png",
62+
bio: "A simple hardware acceerator to obtain the embedding vector for the input sequence of tokens.",
63+
details: "https://raw.githubusercontent.com/DevPro13/Fall-Detection-and-Alarming-Sys/refs/heads/main/README.md",
64+
stack: ["VLSI", "AI Accelerators", "Hardware Design", "HPC", "FPGA"],
65+
year: "2026",
66+
link: "https://github.com/DevPro13/Design-and-Verification-of-a-Fixed-Point-Attention-Accelerator",
67+
},
68+
{
69+
id: 6,
4670
category: "Hardware",
4771
title: "Startracker Simulator for Attitude Determination of Spacecraft",
4872
tag: "Startracker, CCD, Star Catalogue",
@@ -54,19 +78,7 @@ const PROJECTS = [
5478
link: "https://github.com/DevPro13/Startracker-Simulator-for-Attitude-Determination-of-Spacecrafts",
5579
},
5680
{
57-
id: 5,
58-
category: "Hardware",
59-
title: "RISC-V-Complete-Multicycle-Processor Design",
60-
tag: "VLSI design and verification",
61-
image: "https://raw.githubusercontent.com/DevPro13/RISC-V-Complete-Multicycle-Processor-Design/refs/heads/main/Img/risc-v%20complete.jpg",
62-
bio: "A complete multi-cycle processor was modelled and tested using System-Verilog.",
63-
details: "https://raw.githubusercontent.com/DevPro13/RISC-V-Complete-Multicycle-Processor-Design/refs/heads/main/README.md",
64-
stack: ["SystemVerilog", "ModelSim", "RISC-V", "TestBench"],
65-
year: "2024",
66-
link: "https://github.com/DevPro13/RISC-V-Complete-Multicycle-Processor-Design",
67-
},
68-
{
69-
id: 6,
81+
id: 7,
7082
category: "Hardware",
7183
title: "Fall Detection and Alerting System",
7284
tag: "Fall Detection, Hardware Design, PI processor",
@@ -78,7 +90,7 @@ const PROJECTS = [
7890
link: "https://github.com/DevPro13/Fall-Detection-and-Alarming-Sys",
7991
},
8092
{
81-
id: 7,
93+
id: 8,
8294
category: "Hardware",
8395
title: "Internet of Medical Things and Streaming",
8496
tag: "ESP32",
@@ -197,7 +209,7 @@ function ProjectCard({ project, onReadmeOpen }) {
197209
);
198210
}
199211

200-
const VISIBLE_COUNT = 3;// no of projects tiles to display
212+
const VISIBLE_COUNT = 4;// no of projects tiles to display
201213

202214
export default function Projects() {
203215
const [activeTab, setActiveTab] = useState("hardware");

0 commit comments

Comments
 (0)