Skip to content
View pankkor's full-sized avatar

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. SwiftHeap SwiftHeap Public

    Heap in Swift

    Swift 1

  3. screensavers screensavers Public

    C, nostdlib, OpenGL playground

    C

  4. ld42_rams ld42_rams Public

    Ludum Dare 42 Entry (August 2018)

    C#

  5. 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
  6. 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