├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── data └── uci-to-yahoo ├── get_gflags.sh ├── src ├── AdjList.cpp ├── AdjList.hpp ├── Bigraph.cpp ├── Bigraph.hpp ├── CMakeLists.txt ├── HashTable.hpp ├── NumaArray.cpp ├── NumaArray.hpp ├── Partition.hpp ├── Shuffle.hpp ├── Types.hpp ├── Utils.hpp ├── Vocab.cpp ├── Vocab.hpp ├── Xorshift.hpp ├── alias_urn.h ├── clock.cpp ├── clock.hpp ├── format.cpp ├── lda.cpp ├── lda.hpp ├── main.cpp ├── warplda.cpp └── warplda.hpp └── test ├── CMakeLists.txt └── basic.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | debug/ 2 | release/ 3 | gflags/ 4 | *.txt 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/README.md -------------------------------------------------------------------------------- /data/uci-to-yahoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/data/uci-to-yahoo -------------------------------------------------------------------------------- /get_gflags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/get_gflags.sh -------------------------------------------------------------------------------- /src/AdjList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/AdjList.cpp -------------------------------------------------------------------------------- /src/AdjList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/AdjList.hpp -------------------------------------------------------------------------------- /src/Bigraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/Bigraph.cpp -------------------------------------------------------------------------------- /src/Bigraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/Bigraph.hpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/HashTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/HashTable.hpp -------------------------------------------------------------------------------- /src/NumaArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/NumaArray.cpp -------------------------------------------------------------------------------- /src/NumaArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/NumaArray.hpp -------------------------------------------------------------------------------- /src/Partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/Partition.hpp -------------------------------------------------------------------------------- /src/Shuffle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/Shuffle.hpp -------------------------------------------------------------------------------- /src/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/Types.hpp -------------------------------------------------------------------------------- /src/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/Utils.hpp -------------------------------------------------------------------------------- /src/Vocab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/Vocab.cpp -------------------------------------------------------------------------------- /src/Vocab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/Vocab.hpp -------------------------------------------------------------------------------- /src/Xorshift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/Xorshift.hpp -------------------------------------------------------------------------------- /src/alias_urn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/alias_urn.h -------------------------------------------------------------------------------- /src/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/clock.cpp -------------------------------------------------------------------------------- /src/clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/clock.hpp -------------------------------------------------------------------------------- /src/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/format.cpp -------------------------------------------------------------------------------- /src/lda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/lda.cpp -------------------------------------------------------------------------------- /src/lda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/lda.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/warplda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/warplda.cpp -------------------------------------------------------------------------------- /src/warplda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/src/warplda.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-ml/warplda/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/basic.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("OK\n"); 6 | return 0; 7 | } 8 | --------------------------------------------------------------------------------