Skip to content

repository documenting my journey in bridging deep learning theory and low‑level programming through reproducible labs in C, Rust, Assembly, and CUDA with detailed LaTeX documentation and performance optimization insights.

Notifications You must be signed in to change notification settings

demian-overflow/deep_compute_labs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Deep Compute Labs

Overview

Educational repository for deep CS, ML, Cybersec.

Requirements

  • C: GCC or another C compiler
  • Rust: Rust compiler and cargo (install from https://rustup.rs/)
  • Assembly: NASM assembler and ld linker
  • CUDA: NVIDIA CUDA Toolkit and compatible GPU

Confirm setup

C

gcc --version
gcc hello/C/hello.c -o hello/bin/C
./hello/bin/C

Rust

rustc --version
cargo --version
rustc hello/rust/hello.rs -o hello/bin/rust
./hello/bin/rust

Assembly

as --version
ld --version
as hello/assembly/hello.s -o hello/assembly/hello.o
ld hello/assembly/hello.o -o hello/bin/assembly
./hello/bin/assembly

CUDA

nvcc --version
nvidia-smi
nvcc hello/cuda/hello.cu -o hello/bin/cuda
./hello/bin/cuda

About

repository documenting my journey in bridging deep learning theory and low‑level programming through reproducible labs in C, Rust, Assembly, and CUDA with detailed LaTeX documentation and performance optimization insights.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published