This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdint.h> | |
| #include <time.h> | |
| #define OUTER 1000 | |
| #define INNER 1000000 | |
| int main(void) { | |
| struct timespec start, end; | |
| clock_gettime(CLOCK_MONOTONIC, &start); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Utils | |
| function log { | |
| param([string]$Message) | |
| Write-Host "`n$Message" | |
| } | |
| # Startup script (check $PROFILE and add below code there) | |
| function touch { | |
| param([string]$File) | |