Skip to content

Instantly share code, notes, and snippets.

View ArturKlauser's full-sized avatar

Artur Klauser ArturKlauser

  • Bay Area, CA, USA
View GitHub Profile
@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)