The text you're encountering, "Warning: Num samples per thread reduced to 32768. Rendering might be slower," typically occurs in the context of computer graphics rendering, such as in 3D modeling software, game engines, or rendering applications. This warning suggests that the software or rendering engine has automatically adjusted a setting related to the number of samples per thread to a value of 32768.
The warning typically occurs in V-Ray or similar GPU-accelerated renderers when your scene is reaching the memory (VRAM) ceiling of your graphics card . Why This Happens
The application enforces a hard limit (e.g., MAX_SAMPLES_PER_THREAD = 32768 ).
In the dark, Mira’s voice came through the earpiece one last time: “Rendering complete.”
// Instead of: rtcSetDeviceProperty(device, "max_samples_per_thread", 65536); // Use: rtcSetDeviceProperty(device, "max_samples_per_thread", 32768);
The root cause lies in , usually memory-related. Here are the most common scenarios: