Gaoyang Zhang
Gaoyang Zhang
Error "cutlass_matmul.h:332 status failed with error Error Internal" on freshly compiled Instant-ngp
Fwiw, I got the same error ("cutlass_matmul.h:332 ...") with the binary built at commit 090aed613499ac2dbba3c2cede24befa248ece8a, but building at commit 6ee7724370b5e7aa9d514a8c36fae78c112706d9 and dragging a source file (a directory or a transforms.json)...
Hi @Quantenzitrone, I'm not entirely sure but you might also want to set `XDG_CURRENT_DESKTOP` to `sway` _for the xdg-desktop-portal service_. The official home-manager module provided by hyprland [imports the environments...
> So I tried it in my Arch and it is doesn't compile at all. > > > > So even if it is on Linux, it is doesn't working((...
> May I ask why you need a system-wide install of CUDA? Shouldn't the cuda toolkit which is installed in the conda environment be enough? Oh I think I just...
I also encountered this with nixGL c917918ab9ebeee27b0dd657263d3f57ba6bb8ad on Arch, after the 530.41.03 upgrade: ```shell $ nix log /nix/store/0ylgpj1qa2dam32kk1wmbkhs090763q4-nvidia-x11-530.41.03-nixGL.drv @nix { "action": "setPhase", "phase": "unpackPhase" } unpacking sources tail: error writing...
Turns out it's not a nixgl issue and has been fixed in nixpkgs: https://github.com/NixOS/nixpkgs/pull/222762 If anybody uses a flake-based environment like me, here's how I fixed this: I added a...
Hi @alberthli, I think there are several steps should be done to install this package: 1. First of all, obtain a local copy of this repository 2. The error about...
Here's a modified `CMakeLists.txt` for pip installation: ```cmake cmake_minimum_required(VERSION 3.23) project(volume_rendering_jax LANGUAGES CXX CUDA) # use `cmake -DCMAKE_CUDA_ARCHITECTURES=61;62;75` to build for compute capabilities 61, 62, and 75 # set(CMAKE_CUDA_ARCHITECTURES "all")...
Hi @alberthli, I recently encountered a use case where I need to calibrate the JAX's `HashGridEncoder` (not `TCNNHashGridEncoder`)'s parameter layout with that of tiny-cuda-nn's, I just pushed an update to...
Hi @Chutlhu, Thank you for your interest. I implemented `shjax` as a custom extension in [`deps/spherical-harmonics-encoding-jax/`](https://github.com/blurgyy/jaxngp/tree/main/deps/spherical-harmonics-encoding-jax), and it is integrated in python via https://github.com/blurgyy/jaxngp/blob/d63c2c9f30b5e77c0ea212ceab94d62529f7a887/models/encoders.py#L351-L357 You can inspect its source there....