Suppress on dashboards PTX recursive worklet stack size warnings.

The PTX pass has pretty bad warning controls and we can't suppress
specific warnings for a single function. So instead we suppress
on dashboard the ptx warning for functions we know work
This commit is contained in:
Robert Maynard 2018-05-10 11:32:24 -04:00
parent 60c115fb68
commit 6173300d5d

@ -33,4 +33,10 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION
# doxygen tags in them.
"CONTRIBUTING.md.*warning"
"CodingConventions.md.*warning"
# disable PTX warning about recursive functions. These look like they can't be silenced
# without disabling all PTX warnings, show hide them on the dashboard.
# We explicitly only suppress specific worklets so we can see when new recursive
# worklets are added
"ptxas warning : Stack size for entry function.*NearestNeighborSearch3DWorklet.*"
)