LAKostis

Results 16 comments of LAKostis

I can confirm that reverting that commit (https://github.com/ROCm/llvm-project/commit/30a3adf50e2d49dfc97c1b614d9b93638eba672d) fixes the crash with other scenes like classroom but not with blender-3.2 (https://cloud.blender.org/p/gallery/629f23f908e12d4ff15241d3) which still crashed with the similar error (happens only...

> @LAKostis this is weird, because the blender-3.2 splashscreen renders fine for me on all the devices I've tested. Are you sure your Blender is not using your cycles cache?...

> HSA_OVERRIDE_GFX_VERSION No, with HSA_OVERRIDE_GFX_VERSION=gfx1030 it doesn't start with error `HIP hipInit: Invalid device` But interesting, it works with lowering -O level: ```❯ blender Read prefs: "/home/lakostis/.config/blender/4.1/config/userpref.blend" Read blend: "/home/lakostis/Downloads/Blender...

UPDATE: more funny things with compiler: > hipcc -Wno-parentheses-equality -Wno-unused-value --hipcc-func-supp -O1 -ffast-math --amdgpu-target=gfx1031 -I /usr/share/blender/4.1/scripts/addons/cycles/source --genco /usr/share/blender/4.1/scripts/addons/cycles/source/kernel/device/hip/kernel.cpp -o "/home/lakostis/.cache/cycles/kernels/cycles_kernel_gfx1031_F68CBA054A76B5B26A931C269B2CF458" This command produces workable kernel despite of warnings about deprecated...

Stumble on this too. Looks like dxc doesn't use latest version of dx headers but specific commit: ``` $ git submodule update Cloning into '/home/lakostis/local/src/git/work/DirectXShaderCompiler/external/DirectX-Headers'... Cloning into '/home/lakostis/local/src/git/work/DirectXShaderCompiler/external/SPIRV-Headers'... Cloning into...

Hello! Could you find some time to upgrade DirectX-Headers submodule to more recent version? It's very confusing to figure out this every time during the build that despite the most...

But you can always create a shell wrapper for nvme-cli which actually calls it via sudo: ``` $ cat ./nvme #!/bin/bash -efu sudo /usr/sbin/nvme $* ``` or use shell alias...

UPDATE: checked with recent rocm and blender 4.2.0 kernel 6.9.10 ``` ❯ rpm -qa|fgrep 6.1.2-alt0 fgrep: warning: fgrep is obsolescent; using grep -F rocm-comgr-devel-6.1.2-alt0.2.x86_64 llvm-rocm-6.1.2-alt0.2.x86_64 clang-rocm-6.1.2-alt0.2.x86_64 hip-devel-6.1.2-alt0.2.x86_64 librocm-smi1-6.1.2-alt0.2.x86_64 rocminfo-6.1.2-alt0.1.x86_64 clang-rocm-tools-6.1.2-alt0.2.x86_64...

I've tested with reverted commit, can try again without reverting. On Mon, 22 Jul 2024, 19:28 Gavin Zhao, ***@***.***> wrote: > Does reverting 30a3adf > > still help? I'm considering...

> I've tested with reverted commit, can try again without reverting. Without reverting that commit everything works with -O1 but fails if O >=2.