Skip to content
View pankkor's full-sized avatar
Block or Report

Block or report pankkor

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. pap pap Public

    Performance-Aware-Programming Course Playground

    C

  2. Benchmark u32 array sum(); CFLAGS = ... Benchmark u32 array sum(); CFLAGS = -std=c11 -Wall -Wextra -Wpedantic -O3 -mcpu=apple-m1
    1
    #ifndef __aarch64__
    2
    #error Architectures other than arm64 are not supported
    3
    #endif // #ifndef __aarch64__
    4
    
                  
    5
    #include <arm_neon.h>
  3. Windows large pages, Linux huge page... Windows large pages, Linux huge pages, macOS super pages support
    1
    # Large, Huge, Super Pages
    2
    
                  
    3
    ## Linux Huge Pages
    4
    ### Transparent Huge Pages (THP) via `madvice`
    5
    Not covered here, see https://www.kernel.org/doc/Documentation/vm/transhuge.txt
  4. Reverse char string in place using simd Reverse char string in place using simd
    1
    // Reverse char string in place
    2
    //
    3
    // Build:
    4
    // clang -O2 -DTEST -mavx2 -Wall -Wpedantic -Wextra str_reverse.c -o str_reverse
    5
    // or
  5. SwiftHeap SwiftHeap Public

    Heap in Swift

    Swift 1

  6. semver-sh semver-sh Public

    Simple posix shell script to work with semver

    Shell