hashmap.h 193 Bytes
Newer Older
yanyan's avatar
yanyan committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <tensorview/tensor.h>


namespace spconv {

enum HashTypes {
    kDenseMap = 0,
    kCUDPPHash = 1
};

template <int Impl>
struct HashMap;

template<>
struct HashMap<kDenseMap>{

};

}