Hey Martini,Martini wrote: Wed Feb 10, 2021 10:02 amI tried exporting from BlendLuxCore and what it output for me (and worked) is:Wumme wrote: Wed Feb 10, 2021 7:15 am...Dade wrote: Tue Feb 09, 2021 11:30 am The latest LuxCore uses C++ code for rendering, by default, with the CPU (i.e. no need to use/have an OpenCL CPU device). To disable the CPU usage, you have to set the number of CPU threads to 0 by setting "native.threads.count" to 0.
Code: Select all
LuxCoreUI v2.4 (LuxCore demo: http://www.luxcorerender.org) [LuxCore][0.000] Configuration: [LuxCore][0.000] opencl.cpu.use = "0" [LuxCore][0.000] native.threads.count = "0"
I think you are missing the opencl. prefix.Code: Select all
opencl.native.threads.count = 0
I notice that all your values are quoted. I'm not sure if it makes a difference, but I think if the value is a pure int or float, then it should not be quoted?Wumme wrote: Wed Feb 10, 2021 7:15 amCode: Select all
[LuxCore][0.000] opencl.cpu.use = "0" [LuxCore][0.000] native.threads.count = "0" [LuxCore][0.000] opencl.gpu.use = "1" [LuxCore][0.000] opencl.devices.select = "1000"
Hope this helpsCode: Select all
opencl.cpu.use = 0 opencl.native.threads.count = 0 opencl.gpu.use = 1 opencl.devices.select = "1000"
![]()
yea this is only because the attached output was log-output. The configs in the render.cfg are without quotes.
but thanks anyway.
