#include "bvh_statistics.h"
#include "../../common/algorithms/parallel_reduce.h"
namespace embree
{
template<int N>
BVHNStatistics<N>::BVHNStatistics (BVH* bvh) : … { … }
template<int N>
std::string BVHNStatistics<N>::str()
{ … }
template<int N>
typename BVHNStatistics<N>::Statistics BVHNStatistics<N>::statistics(NodeRef node, const double A, const BBox1f t0t1)
{ … }
#if defined(__AVX__)
template class BVHNStatistics<8>;
#endif
#if !defined(__AVX__) || (!defined(EMBREE_TARGET_SSE2) && !defined(EMBREE_TARGET_SSE42)) || defined(__aarch64__)
template class BVHNStatistics<4>;
#endif
}