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
8 changes: 4 additions & 4 deletions dev/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ const Features = () => {
desc: "Translates AVX-512 instructions at runtime into semantically equivalent sequences of supported instructions.",
icon: "cpu"
}, {
title: "High Performance",
desc: "Achieves near-native performance on real-world workloads like XZ compression and LLaMa.cpp",
title: "Effective Performance",
desc: "Achieves effective performance on real-world workloads like xz compression and LLaMa.cpp",
icon: "zap"
}];
return /*#__PURE__*/React.createElement("section", {
Expand Down Expand Up @@ -396,14 +396,14 @@ const Benchmarks = () => {
name: "file-archive",
size: 20,
className: "text-yellow-500"
}), "XZ Compression (Time)"), /*#__PURE__*/React.createElement("div", {
}), "xz Compression (Time)"), /*#__PURE__*/React.createElement("div", {
className: "space-y-6"
}, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("div", {
className: "flex justify-between text-sm mb-2"
}, /*#__PURE__*/React.createElement("span", {
className: "text-white font-medium"
}, "Dr.avx"), /*#__PURE__*/React.createElement("span", {
className: "text-green-400"
className: "text-blue-400"
}, "106.64 s")), /*#__PURE__*/React.createElement("div", {
className: "h-4 bg-black/50 rounded-full overflow-hidden"
}, /*#__PURE__*/React.createElement("div", {
Expand Down
8 changes: 4 additions & 4 deletions dev/app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ const Features = () => {
icon: "cpu"
},
{
title: "High Performance",
desc: "Achieves near-native performance on real-world workloads like XZ compression and LLaMa.cpp",
title: "Effective Performance",
desc: "Achieves effective performance on real-world workloads like xz compression and LLaMa.cpp",
icon: "zap"
},
];
Expand Down Expand Up @@ -362,13 +362,13 @@ const Benchmarks = () => {
<div className="bg-surface p-8 rounded-2xl border border-white/10">
<h3 className="text-xl font-bold text-white mb-6 flex items-center gap-2">
<Icon name="file-archive" size={20} className="text-yellow-500" />
XZ Compression (Time)
xz Compression (Time)
</h3>
<div className="space-y-6">
<div>
<div className="flex justify-between text-sm mb-2">
<span className="text-white font-medium">Dr.avx</span>
<span className="text-green-400">106.64 s</span>
<span className="text-blue-400">106.64 s</span>
</div>
<div className="h-4 bg-black/50 rounded-full overflow-hidden">
<div className="h-full bg-chartDravx w-[92%]"></div>
Expand Down
Loading