NVlabs / tiny-cuda-nn

Lightning fast C++/CUDA neural network framework
Other
3.77k stars 457 forks source link

composite encoding #161

Open jc211 opened 2 years ago

jc211 commented 2 years ago

Can we add an accessor to the nested encodings? The nested encodings become shared_ptrs and the getter might be:

std::vector<std::shared_ptr<Encoding<T>>>& get_nested() const {
      return m_nested;
}
Tom94 commented 2 years ago

Sure, I’m open to the idea and would accept such a PR.