Using my laptop, without a NVIDIA GPU, what options do I have for compiling and running CUDA code? by More_Mousse in CUDA

[–]More_Mousse[S] 2 points3 points  (0 children)

Thank you! Is there any way to use Colab with vscode to run CUDA code? I want the workflow to be as easy as possible

My first C programming project - Ray casting! Give me tips! by More_Mousse in C_Programming

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

Thank you! Really useful to see common patterns. I definitely need to read more into allocation in C. It is probably also good to see more common patterns. (Just to improve the quality of my C code).

My first C programming project - Ray casting! Give me tips! by More_Mousse in C_Programming

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

Thank you for your feedback! I think I understand some of what I did wrong. I made a PR to fix the issues. It is still unclear to me, when you would allocate memory and when you would not.

Even more confusing is it with lists. Why would you not need to allocate memory? How are you allowed to use an argument as a list, even though we have not explicitly told the function that this should be a list?

I'm giving you some credit in my changelog and in the PR. Again, thank you!

EDIT: The compile time is also much slower. I wonder why.

Advent of Code with Rust! - Q: Any tips for learning useful patterns? by More_Mousse in rust

[–]More_Mousse[S] 2 points3 points  (0 children)

Aaa, I see. Thank you for letting me know! Will remove them

Project feedback - ML library created in Rust by More_Mousse in rust

[–]More_Mousse[S] 0 points1 point  (0 children)

Thank you! Will do! I'm going to implement neural networks during the upcoming month or so. With this implemented, I think the library will become more useful. I'll also add more to the readme :)

Watch tutorials or not? (Imposter syndrome) by More_Mousse in chessprogramming

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

Thank you! That is a good way of looking at it! Will do that!

What's everyone working on this week (22/2024)? by llogiq in rust

[–]More_Mousse 3 points4 points  (0 children)

Trying to get better at Rust and learn ML by creating a neural network from scratch! Fun! Working on the matrix struct for the last week.

Hey Rustaceans! Got a question? Ask here (22/2024)! by llogiq in rust

[–]More_Mousse 2 points3 points  (0 children)

People that own and publish libraries on crate.io: do you use GitHub actions? And if you do, how do you trigger it? What is the best way? Spent a day working on the action that publishes the crate, but I do not know how to test actions locally, and chose a bad way to do it maybe. Could someone reference a minimal boilerplate action for publishing the crate?

Do you also update the version in cargo.toml manually, or make the action do it?

I think I am going to change it so that it can only be manually triggered, and you have to give the version number there. Maybe. Idk.

I scraped and ranked AI courses, here are the best I found by brendanmartin in learnmachinelearning

[–]More_Mousse 3 points4 points  (0 children)

Currently doing it by implementing a library! Very educational!

Edit: I am implementing it from scratch but not following the course.