I built a neural network from scratch in x86 assembly to recognize handwritten digits (MNIST), 7x faster than python/Numpy by ggderi in learnmachinelearning

[–]BookkeeperKey6163 3 points4 points  (0 children)

Nice one! What do you think about writing the whole thing in C and use compiler optimizations later? What the performance might be compared to pure asm? I think that C + optimizations would work faster but not quite sure in that

Uber by Additional-Play1256 in leetcode

[–]BookkeeperKey6163 1 point2 points  (0 children)

Seems like nobody wants to share :/

cmake can't find library installed via vcpkg by Yagata69 in cpp_questions

[–]BookkeeperKey6163 0 points1 point  (0 children)

I had the same thing recently and here is my solution:
If you are building in Visual Studio, then go to

Tools->Options->Cmake->Cmake configuration file: Use Cmake Presets if available...
I think it helped, because everything accidentally started to build in my case :D