| 21 | BatchCache() {} |
| 22 | virtual ~BatchCache() {} |
| 23 | void update(const Tensor& t) { |
| 24 | update((K*)t.data(), t.NumElements()); |
| 25 | } |
| 26 | void add_to_prefetch_list(const Tensor& t) { |
| 27 | add_to_prefetch_list((K*)t.data(), t.NumElements()); |
| 28 | } |
nothing calls this directly
no test coverage detected