Anders Langlands

Results 61 comments of Anders Langlands

I'm having a similar issue. I'm not sure what exactly is getting rebuilt (is there any way to get more output from cmake-rs from cargo as opposed to just the...

Did you manage to figure this out? Or find a different CUDA version etc. that worked? I'm getting the same error with CUDA 11.2

In case anyone else hits this, CUDA 11.6 works for me.

Thinking about it some more, it occurs to me that a possible solution might be to create and hold ref's to all the objects individually, then construct the scene graph...

Hi there! First thing you'll need to do is get your RGB pixel as an RGBf32, then: ``` let pix_p3: RGBf32 = px_f16.into(); let mtx = transform::rgb_to_rgb_matrix(&model_f32::DCI_P3_D65, &model_f32::sRGB); let pix_srgb_linear...

Hi! thanks for that. Yes there's some print statements here and there I'm using while developing that I should get rid of. To your question - yes, what you're after...

Hi there! Sorry for the late reply. I haven't had a chance to look at this yet. In principle what you're doing doesn't look immediately wrong but there's probably some...

This is with cmd.exe as the shell by the way. With pwsh I get an even more baffling error: ```pwsh CMake Error: The source directory "C:/Users/anders/AppData/Local/Temp/rez-cook/imath/3.0.5/build/platform-windows/arch-AMD64/.3" does not exist. ```...

Just for fun I tried changing the command line setting in `cmake.build()` to: ```python cmake_path = os.path.join(os.path.dirname(__file__), "cmake_files") cmd.append("-DCMAKE_MODULE_PATH=%s" % pathlib.Path(cmake_path).as_posix()) ``` which seems to work. Of course now I'm...

OK so the fix is I think to change cmd's normalize_path(): ```python def normalize_path(self, path): # Don't convert to windows path here because windows paths are evil and # CMake...