Skip to content

Instantly share code, notes, and snippets.

View 3outeille's full-sized avatar
🎯
https://www.youtube.com/watch?v=VYPi0qcHWvQ&ab_channel=ABANIMETION

Ferdinand Mom 3outeille

🎯
https://www.youtube.com/watch?v=VYPi0qcHWvQ&ab_channel=ABANIMETION
View GitHub Profile
@3outeille
3outeille / fg_blend_stripe_sse4.asm
Last active September 6, 2022 20:39
x86inc fg blend stripe sse4
%define ARCH_X86_64 1
%define private_prefix asm
%include "x86inc.asm"
section .rodata align=16
zeros_vec: dd 0, 0, 0, 0
ones_vec: dd 1, 1, 1, 1
neg_ones_vec: dd -1, -1, -1, -1
@3outeille
3outeille / fg_blend_stripe_sse4.c
Last active September 6, 2022 18:45
fg_blend_stripe_sse4 C version
void fg_blend_stripe_sse4(int16_t *dstSampleOffsetY, int16_t *srcSampleOffsetY, int32_t *grainStripe, uint32_t widthComp, uint32_t blockHeight, uint8_t bitDepth)
{
uint32_t k, l;
// Prepare SIMD SSE4 ov_clip_uintp2
__m128i mask = _mm_set1_epi32((1 << bitDepth));
__m128i not_mask = _mm_xor_si128(mask, mask);
not_mask = _mm_sub_epi32(not_mask, mask);
mask = _mm_sub_epi32(mask, _mm_set1_epi32(1));
@3outeille
3outeille / fg_compute_block_avg_sse4.c
Created September 8, 2022 09:09
fg_compute_block_avg_sse4
int16_t fg_compute_block_avg_sse4(int16_t *dstSampleBlk8, uint32_t widthComp, uint16_t *pNumSamples,
uint8_t ySize, uint8_t xSize, uint8_t bitDepth)
{
uint16_t blockAvg = 0;
uint16_t numSamples = 0;
__m128i acc = _mm_setzero_si128();
for (int i = 0; i < ySize; i+=1, numSamples+=8)
{
@3outeille
3outeille / fg_compute_block_avg.c
Last active September 8, 2022 09:14
fg_compute_block_avg
int16_t fg_compute_block_avg(int16_t *dstSampleBlk8, uint32_t widthComp, uint16_t *pNumSamples,
uint8_t ySize, uint8_t xSize, uint8_t bitDepth)
{
uint32_t blockAvg = 0;
uint16_t numSamples = 0;
uint8_t k, l;
for (k = 0; k < ySize; k++)
{
for (l = 0; l < xSize; l++)
@3outeille
3outeille / context.c
Created September 8, 2022 11:10
fg_compute_block_avg context call
/* Loop of 16x16 blocks */
for (y = 0; y < heightComp[compCtr]; y += 16)
{
...
for (x = 0; x < widthComp[compCtr]; x += 16)
{
...
for (blkId = 0; blkId < 4; blkId++)
{
yOffset8x8 = (blkId >> 1) * 8;
@3outeille
3outeille / c-cpp-oops.md
Created October 2, 2022 06:37 — forked from ayan-b/c-cpp-oops.md
C, C++ & OOPS for Interviews
@3outeille
3outeille / CMakeLists.txt
Last active November 21, 2022 00:25
CUDA experiment bank conflict shared memory (with a CMakeLists)
# To run
# mkdir build && cd build
# cmake ..
# make -j && ./bank conflict <offset> <is_debug>
cmake_minimum_required(VERSION 3.0)
set(CMAKE_CXX_FLAGS "-O3 -std=c++14")
set(CUDA_NVCC_FLAGS -arch=compute_52 -code=sm_75)
@3outeille
3outeille / README.md
Last active March 28, 2023 19:22
race condition fuck my life
  • Problem: We have blocks that are scheduled later than others which imply that we won't get the "true max value" at the time we need it.
  • Direction: We should find a way to wait for all threads of all blocks to finish
  • Solution:
      1. Split into 2 kernels
    1. Use cooperative groups: https://numba.readthedocs.io/en/stable/cuda/cooperative_groups.html
@3outeille
3outeille / README.md
Last active April 14, 2023 13:55
Triton Matmul Group-ordering vs Row-major ordering
@3outeille
3outeille / full_cpu.py
Last active May 11, 2023 09:37
rwvk perplexity measure
import torch
from tqdm import tqdm
from transformers import AutoModelForCausalLM, AutoTokenizer
from datasets import load_dataset
# Model
device = "cpu"
device_map = {