Programming-Language-Benchmarks icon indicating copy to clipboard operation
Programming-Language-Benchmarks copied to clipboard

Yet another implementation of computer language benchmarks game

Results 101 Programming-Language-Benchmarks issues
Sort by recently updated
recently updated
newest added

Hi, I'm willing to look into improving times for Julia language, but want to use tricks disallowed, unfairly, at the Debian benchmark game (at least currently). Julia is currently optimized...

Very nice comparisons. Here are some improvements that can be made in C# - Some cases use Span or Memory [Link - Span, Memory](https://www.codemag.com/Article/2207031/Writing-High-Performance-Code-Using-SpanT-and-MemoryT-in-C) - Some cases use ValueTask instead...

No use of Memory or Span / ReadOnlyMemory etc. Code is non optimized... Thanks

``` program prime implicit none character(30) arg1 integer i,k,M,N, kount logical, allocatable :: flags(:) call get_command_argument(1,arg1) read(arg1,*)M do k = 1,3 N = ishft(10000,M+1-k) allocate(flags(N)) flags = .true. do i=2,...

Hi there! I was poking around and figured I could speed this code up a smidge. The base python package `math` is sometimes slower than you may expect, for example,...

I could not find a good general purpose allocator written in pure rust. But mimalloc, which is written in c, is really easy to use. It requires just two line...

This PR changes the UI so that compiler column in the benchmark table only show the name instead of name+version. This change is intended to help reduce horizontal footprint of...

This patch fixes the binarytree results for zig It also tweaks the binarytree search by using multiple threads to process the trees in parallel Compared to Go : - single...

Why isn’t the the Julia 3.jl pidigit code marked ffi?