Skip to content

Instantly share code, notes, and snippets.

View denisalevi's full-sized avatar

Denis Alevi denisalevi

View GitHub Profile
@ax3l
ax3l / CUDA_Compilers.md
Last active June 23, 2026 15:55
CUDA Compilers
@elerch
elerch / arch-usb-uefi.md
Last active October 15, 2025 20:13
Installation of Arch Linux on a USB stick with UEFI and legacy BIOS Support

Our goal here is to have one USB stick to rule them all. Objectives:

  • We want a full system - not a live CD
  • We want to boot this system on a Macbook Pro (requires UEFI)
  • We want to boot this system on a Acer C720 Chromebook (requires Legacy BIOS support)
  • We want the system "functional"

The last bullet is subject to interpretation, but I'm defining functional as:

  • X Windows works (with LXDE)
@akiross
akiross / Convolutional Arithmetic.ipynb
Last active September 11, 2025 18:04
Few experiments on how convolution and transposed convolution (deconvolution) should work in tensorflow.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@huitseeker
huitseeker / get_ccompute.py
Last active March 29, 2021 12:30
Find a CUDA compute capability from a GPU name programmatically
#!/usr/bin/env python
"""
Obtain the correspondence of a local GPU name to its cuda compute capability
Names match the output of nvidia-smi --query-gpu=gpu_name --format=csv,noheader
Usage:
----
./get_ccompute.py <GPU_NAME>
"""