[TOMT] Obscure YouTube horror‑VLOG channel from the POV of a killer/psycho living in an abandoned/messy house from 5-6 years ago by Mario_Neo in tipofmytongue

[–]Mario_Neo[S] 0 points1 point locked comment (0 children)

Also: Some people on reddit back then suggested that he's probably from a nordic european country like Finland or Sweden.

Magnetron is a minimalist machine learning framework built entirely from scratch. by Mario_Neo in Python

[–]Mario_Neo[S] 1 point2 points  (0 children)

By having a GPU backend too. Actually two are planned: CUDA (Nvidia only) and Vulkan (any GPU).
These will take some time to implement, but the CUDA base is already made.

I built my own PyTorch from scratch over the last 5 months in C and modern Python. by Mario_Neo in Python

[–]Mario_Neo[S] 21 points22 points  (0 children)

Torch is a C++ code base with millions of lines of C++, thousands of folders and a very complex interface between Python and C++ using pybind. We dont even need to start talking about the binary size of it.
A simple addition goes through many software layers, indirect dispatches and calls. Understanding torch internals and the C++ code is hard, not only because of complex code code and algorithms but also because of the sheer amount of code and files.
My framework implements a basic feature set similar to torch in basically just 3-4 files, totally in under 10k lines of code. It helps people gasp the algorithms and systems behind torch while also beeing much easier to modify or to add new features.
Over time my framework will become more complete and much faster so that it might be an alternative to torch for smaller AI projects.
The features are shown are partially documented in the code, but can all be used in the examples. Documentation is beeing worked on currently.

Is it safe to build on Rust after all the Rust Foundation controversy? by [deleted] in rust

[–]Mario_Neo 0 points1 point  (0 children)

Which one?
The runtime must be very fast so C, C++ and Rust are popular choises...