RTPATHOCL with OPTIX_DENOISER

Use this forum for general user support and related questions.
Forum rules
Please upload a testscene that allows developers to reproduce the problem, and attach some images.
Post Reply
bartek_zgo
Posts: 116
Joined: Mon Oct 26, 2020 11:42 am

RTPATHOCL with OPTIX_DENOISER

Post by bartek_zgo »

Hi guys,
I'm trying to use RTPATHOCL wit OPTIX_DENOISER.
When I'm using PATHOCL, I have seen that enabling ALBEDO and AVG_SHADING_NORMAL makes OPTIX_DENOISER work much faster.
But unfortunately when I enable them with RTPATHOCL I get segmentation fault. Any ideas?

Code: Select all

path.pathdepth.total = "64"
path.pathdepth.diffuse = "16"
path.pathdepth.glossy = "16"
path.pathdepth.specular = "64"
path.hybridbackforward.enable = "1"
path.hybridbackforward.partition = "1"
path.hybridbackforward.glossinessthreshold = "0.15"
opencl.cpu.use = "0"
opencl.gpu.use = "1"
opencl.devices.select = "01"
renderengine.type = "RTPATHOCL"
sampler.type = "TILEPATHSAMPLER"
lightstrategy.type = "LOG_POWER"
filesaver.renderengine.type = "PATHOCL"
filesaver.format = "TXT"
path.clamping.variance.maxvalue = "2000000000000000000"
scene.epsilon.min = "0.000000001"
scene.epsilon.max = "0.1"
path.albedospecular.type = "REFLECT_TRANSMIT"
path.albedospecular.glossinessthreshold = "0.05"
opencl.native.threads.count = "28"
renderengine.seed = 0
film.width = 1024
film.height = 512
batch.halttime = 120
film.imagepipelines.0.0.type = "NOP"
film.imagepipelines.0.1.type = "OPTIX_DENOISER"
film.imagepipelines.0.1.minspp = "5"
film.imagepipelines.0.2.type = "TONEMAP_LUXLINEAR"
film.imagepipelines.0.2.sensitivity = "100"
film.imagepipelines.0.2.exposure = 0.001
film.imagepipelines.0.2.fstop = 4
film.imagepipelines.0.3.type = "TONEMAP_OPENCOLORIO"
film.imagepipelines.0.3.mode = "DISPLAY_CONVERSION"
film.imagepipelines.0.3.config = "/mnt/z/MATADOR/Plugins/OpenColorIO-Config-ACES-1.2/aces_1.2/config.ocio"
film.imagepipelines.0.3.src = "ACEScg"
film.imagepipelines.0.3.display = "ACES"
film.imagepipelines.0.3.view = "sRGB"
film.outputs.0.type = "RGB_IMAGEPIPELINE"
film.outputs.0.filename = "0_FI_70408_277819_0000.jpg"
film.outputs.0.index = 0
film.outputs.1.type = "ALBEDO"
film.outputs.1.filename = "0_FI_70408_277819_0000_albedo.exr"
film.outputs.2.type = "AVG_SHADING_NORMAL"
film.outputs.2.filename = "0_FI_70408_277819_0000_avgShadingNormal.exr"
scene.file = "scene.scn"

bartek_zgo
Posts: 116
Joined: Mon Oct 26, 2020 11:42 am

Re: RTPATHOCL with OPTIX_DENOISER

Post by bartek_zgo »

Solved the issue by removing

Code: Select all

path.clamping.variance.maxvalue = "2000000000000000000"
Post Reply