Harijs Grinbergs
Harijs Grinbergs
I'm building 32bit on windows. I'll try reducing the code size. The issue might be with something else, as AS is a part of a much larger system.
I can replicate the problem with Tutorial example that comes with AngelScript. Just add JIT to it and call a script having formatFloat or formatInt in it. Here is the...
How about Raspberry Pi or Jetson? At least RPi is cheap and easy to use. I would love to have the JIT work on it.
Yeah, sorry Raspberry Pi is a very popular ARM PC - http://www.raspberrypi.org/blog/ And Jetson is an ARM PC created by Nvidia - http://www.nvidia.com/object/jetson-tk1-embedded-dev-kit.html Maybe Jetson isn't a good example, but...
The current tkdnn doesn't support plugins registry (which is why it doesn't work on trt8). You can try building the .so in this branch: https://github.com/TheExDeus/tkDNN/tree/feature/tensorrt8_support
When running your code it stops at "Status: Sending SDP answer" and doesn't show anything. Running web server with "python3 -m http.server". Then signaling server with " ./streaming-signalling-server.py". And media...
Sadly with the last stdgpu version Open3D seems to be incompatible. It shows errors like: ``` #13 247.4 /opt/Open3D/build/stdgpu/include/stdgpu/impl/unordered_base_detail.cuh(1230): error: a value of type "cuda::std::__4::pair *" cannot be assigned to...
Yup, it works now, thank you! Though you use textures to pack because it's more compact or performant than if you use uniforms? Because you still calculate the resulting color...
Yeah, multiple blocks would be needed. So with textures the current maximum amount of splats is 4096*4096=16777216 right? That would be 256 uniform blocks on your GPU. I guess SSBO's...