Skip to content

Instantly share code, notes, and snippets.

View lucianoparanhos's full-sized avatar

Luciano Paranhos lucianoparanhos

View GitHub Profile
@lucianoparanhos
lucianoparanhos / rocm_arch_guide.md
Created November 12, 2024 00:25 — forked from augustin-laurent/rocm_arch_guide.md
ROCm Installation guide on Arch
Date of the guide : December 17, 2023

Introduction

In this post, I will provide the solution that worked on my system on how to install Radeon Open Compute (ROCm) on Arch (linux-6.6.7.arch1-1) for RX 6900 XT (Should work on other 6000 series). ROCm is an open-source software platform that allows GPU-accelerated computation. This tool is a prerequist to use GPU Acceleration on TensorFlow or PyTorch. In this guide I will use Paru as my AUR package helper, feel free to use any other (https://wiki.archlinux.org/title/AUR_helpers). I will assume you have a working operating system and know what you do with it (Otherwise Arch will be painfull for you).

Instalando o Arch Linux em resumo

Configurar o teclado

{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh3/main/themes/schema.json",
"blocks": [
{
"type": "prompt",
"alignment": "left",
"segments": [
{
"type": "git",
@lucianoparanhos
lucianoparanhos / franken_stymied.omp.json
Last active February 10, 2021 14:11
Franken-Stymied theme for Oh my Posh 3
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh3/main/themes/schema.json",
"blocks": [
{
"type": "prompt",
"alignment": "left",
"segments": [
{
"type": "session",
"style": "plain",
const f = n => n ? n * f(--n): 1
console.log(f(5));