CPU TopK Algorithm 03-01-2024 03-01-2024 blog 12 minutes read (About 1787 words)Algorithms for Finding the Top $K$ Largest or Smallest Elements in an Unsorted Array on CPU CPP, Algorithm, CPU Read More
Heap Building Algorithm 02-25-2024 02-25-2024 blog 7 minutes read (About 1022 words)An $O(N)$ Heap Building Algorithm and Its Asymptotic Complexity Analysis CPP, Algorithm Read More
Median-of-Medians Selection Algorithm 02-18-2024 02-18-2024 blog 20 minutes read (About 2984 words)An $O(N)$ Selection Algorithm for Finding the $i$-th Smallest Element in an Unsorted Array CPP, Algorithm Read More
TensorRT Custom Plugin Example 01-27-2024 01-27-2024 blog 33 minutes read (About 4884 words)TensorRT Custom Plugin Implementation and Integration CPP, CUDA, NVIDIA, TensorRT Read More
CUDA Matrix Multiplication Optimization 01-20-2024 01-20-2024 article 2 hours read (About 19282 words)General Matrix Multiplication CUDA Performance Optimization CPP, Accelerated Computing, CUDA, NVIDIA Read More
C++ Centering String With Padding Characters 01-20-2024 01-20-2024 blog 3 minutes read (About 444 words)Quick Function for Padding and Centering a String in C++ CPP Read More
C++ Floating-Point Number Comparison 01-08-2024 01-08-2024 blog 4 minutes read (About 588 words)Compare Floating-Point Numbers Empirically CPP Read More
C++ Function Call Performance 11-13-2023 11-13-2023 blog 10 minutes read (About 1441 words)Performance Caveats of Passing Functions as Arguments in C++ CPP Read More
C++ Bind VS Lambda Expression 09-25-2023 09-25-2023 blog 5 minutes read (About 732 words)Replacing Bind with Lambda Expression in C++? CPP Read More
Partition Algorithm 09-07-2023 02-04-2024 blog 3 minutes read (About 511 words)Fundamental $O(N)$ Building Block Algorithm CPP, Algorithm Read More