Articles by Tag #benchmark

Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!

Benchmarking DeepSeek R1 on a Developer’s MacBook

Table of Contents Introduction What's the point? The Prompt What is...

Learn More 32 7Feb 4

Definitive Guide to AI Benchmarks: Comparing Models, Testing Your Own, and Understanding the Future

Artificial intelligence is transforming every industry — from customer support and healthcare to...

Learn More 23 2Mar 3

How to 100% CPU

I've been working with many sysadmins over the years and one question comes up from time to time: "I...

Learn More 9 1Jan 8

SQL-92 in TPC Benchmarks: Are They Still Relevant?

I was reading "pg_duckdb beta release: Even faster analytics in Postgres", which demonstrates that...

Learn More 8 0Oct 25 '24

Benchmarking and Profiling Rust Applications on macOS: A Practical Guide

Profiling Rust code has become part of my daily routine. As I primarily develop on macOS, I've...

Learn More 6 0Sep 23 '24

German LLM Benchmark

Most LLM benchmarks are in English. They do not give us an accurate assessment of how well LLMs...

Learn More 5 0Mar 8

Improving String Manipulation in .NET

One thing so trivial as transforming a string could have considerable impact in the performance...

Learn More 3 0Sep 25 '24

SWE-bench & SWE-bench Verified Benchmarks

SWE-bench In their 2023 paper "SWE-bench: Can Language Models Resolve Real-World GitHub...

Learn More 3 0Apr 6

Lessons learned from improving a Rust program

Recently, I've been working on a new approximate nearest neighbor search algorithm called RaBitQ. The...

Learn More 1 0Oct 13 '24

Go string concatenation benchmark

TL;DR strings.Builder is the fastest and takes least memory. + is tied in memory but...

Learn More 1 0May 1

Why batching matters: Real-world example of performance

Why batching matters: Real-world example of performance. The interaction of latency and...

Learn More 1 0Jan 19

David Blue's Handy Test Document

This is actually a somewhat functional page. If you've arrived here, it'd better be for...

Learn More 0 0Dec 8 '24

timeit.repeat - playing with repetitions to understand patterns

1. The problem Over your software engineering career, you might encounter a piece of code...

Learn More 0 0Aug 8 '24

LLMs bias towards other LLMs

Made a meta-eval asking LLMs to grade a few criterias about other LLMs. The outputs shouldn't be...

Learn More 0 0Mar 2

How I Got x311 Faster Analytics on 110M Rows

Hey everyone! I recently got fed up with waiting minutes for simple analytics queries to finish, so I...

Learn More 0 0May 6

Por que você deve repensar o uso de Regex em validações de strings em Go

Neste post, vamos analisar a performance de regex em Go e apresentar uma alternativa mais eficiente para validação de strings alfanuméricas usando a biblioteca Unicode. Veremos também por que, quando usar regex, você deve compilá-lo fora do método para otimizar a performance.

Learn More 0 0Feb 23

HTTP Compression VS Manual ZIP

Why I'm a lazy person. I've never done zip compression for responses to clients (although...

Learn More 0 0Jun 12

JavaScript's iterator helpers are fast

Running some benchmarks with JavaScript's Iterator helpers vs regular arrays with heavily chained...

Learn More 0 0Jun 8

Various .NET Benchmarks

A lot of times i was wondering what is the best performing code. In order to determine that i had to...

Learn More 0 0Mar 28

Queues in JavaScript

When it comes to the FIFO (First In, First Out) data structure commonly referred as a queue,...

Learn More 0 0May 1