- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is it possible to get the BVH statistics, like total levels, no. of bonding volumes generated, no. of bvh traversals, bvh traversals per ray etc. I am trying benchmark the performance of a few other algorithms.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
To get BVH statistics do the following:
Embree 2.0: call rtcSetVerbose(2)
Embree 2.3.X: call rtcInit("verbose=2")
To get traversal statistics:
Embree 2.0 and Embree 2.3: Enable USE_STAT_COUNTERS in cmake (might have to press 't' to get into advanced settings) will enable some internal counters. Call rtcDebug to print the values of these counters. These counters are not thread safe, thus render using one thread only! Do not forget to disable the USE_STAT_COUNTERS again later, as it can be quite expensive on a machine with many cores.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
To get BVH statistics do the following:
Embree 2.0: call rtcSetVerbose(2)
Embree 2.3.X: call rtcInit("verbose=2")
To get traversal statistics:
Embree 2.0 and Embree 2.3: Enable USE_STAT_COUNTERS in cmake (might have to press 't' to get into advanced settings) will enable some internal counters. Call rtcDebug to print the values of these counters. These counters are not thread safe, thus render using one thread only! Do not forget to disable the USE_STAT_COUNTERS again later, as it can be quite expensive on a machine with many cores.

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page