Optimize GEMM
My gemm optimization on Raspberry Pi, achieved a 170x performance boost.
My gemm optimization on Raspberry Pi, achieved a 170x performance boost.
This project was inspired by an assignment in my university course. With numerous optimizations, the runtime performance has been enhanced by nearly an order of magnitude, cutting down the training...
This article briefly introduces how to create a hash table using uthash, as well as perform operations such as adding, deleting, looking up an item, printing the table, and clearing the table.
LeetCode Problem 49, titled "Group Anagrams," asks to group a given set of strings based on their anagrams. Since the C language doesn't have the built-in hash table, solving this problem using C c...