Martin Dušek

Results 10 comments of Martin Dušek

Any news on this? We've this problem several times a day :( Centos 7, ejabberd 18.01

I've this problem on Centos 7.4. The workaround for me is to exclude the lib: -exclude-libs=libnsl.so It works, seems that the lib is present on all systems I'm currently running...

Yes, I'm currently using only Centos 7.4 and 7.6, so no problem :)

This can be confusing, because using c_str can work good for extended ascii filenames with some other libraries (FreeImage for example). Maybe there should be a warning in docs (if...

Any news on this? The possible performance gain by using PyTorch 2 would be interesting :)

I was under the impression that the compile function is exclusive to PyTorch 2.0+. But it's interesting to learn that it can be used before training – I hadn't considered...

All of these directions sound promising :) Starting with an ImageInput::read_imagebuf() method seems most practical. An iterator-based approach could also be great for batch processing of subimages.

Looks solid to me: ``` bool ok = inp->read_imagebuf(buf, subimage, miplevel, datatype); for (ReaderIterator it(inp, buf); !it.done; it.next()) { // use buf() } // The question is how to handle...

I haven’t encountered this issue myself. In my workflow, I first convert the model to ONNX and then use NVIDIA’s trtexec.exe to generate the TensorRT engine.

This behavior is by design - when using the search function in Blender (F3), Blender calls the draw() function of any bpy.types.Menu being registered, which includes the ShotGrid menu. As...