Skip to content

Instantly share code, notes, and snippets.

View dimalinux's full-sized avatar

Dmitry Holodov dimalinux

View GitHub Profile
@dimalinux
dimalinux / Helioselene-Entry-README.md
Created July 3, 2025 03:47
README.md for my Helioselene Entry

13th Gen Intel(R) Core(TM) i9-13900H

Selene Point Add...
Reference took 1071ms, your implementation took 863ms
Improvement: 19.42%, Weight: 30%, Weighted Improvement: 5.83%

Helios Point Add...
Reference took 1109ms, your implementation took 831ms
Improvement: 25.07%, Weight: 15%, Weighted Improvement: 3.76%
@dimalinux
dimalinux / monero-zmq-message-types.md
Last active October 15, 2024 18:29
Monero ZMQ message types
@dimalinux
dimalinux / futexsleep.c
Created March 2, 2018 04:39
Using futex syscall to implement sleep
#include <stdio.h>
#include <stdint.h>
#include <time.h>
#include <unistd.h>
#include <sys/syscall.h>
#include <linux/futex.h>
int
futex_sleep (time_t seconds, long nanoseconds)
{