import React from "react"; import ReactMarkdown from "react-markdown"; import { useMarkdownPosts } from "../hooks/useMarkdownPosts"; const About: React.FC = () => { const { posts, error, loading } = useMarkdownPosts("posts"); return (

About Benchcompress

Benchcompress is a benchmarking framework for evaluating compression algorithms on numeric array datasets, with a focus on scientific data. It measures compression ratios and performance metrics across various algorithms and datasets.

View on GitHub


{error ? (
Error loading content: {error}
) : loading ? (
Loading...
) : (
{posts.map((post) => (
{post.date.toLocaleDateString("en-US", { year: "numeric", month: "long", day: "numeric", })}
{post.content} {post.path !== posts[posts.length - 1].path &&
}
))}
)}
); }; export default About;