Skip to content

Instantly share code, notes, and snippets.

@ax3l
ax3l / CUDA_Compilers.md
Last active July 25, 2024 12:35
CUDA Compilers
@cgmb
cgmb / CMakeLists.txt
Last active June 17, 2024 16:26
Setup ROCm on a G4ad instance
cmake_minimum_required(VERSION 3.16)
project(example LANGUAGES CXX)
find_package(hip REQUIRED)
add_executable(example main.cpp)
target_link_libraries(example PRIVATE hip::device)