Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Superjomn/SwiftMPI
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.8
Choose a base ref
...
head repository: Superjomn/SwiftMPI
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 6 commits
  • 52 files changed
  • 3 contributors

Commits on Jul 16, 2015

  1. fix compile warning for lr

    Superjomn committed Jul 16, 2015
    Copy the full SHA
    5e9cbe2 View commit details

Commits on Jul 19, 2015

  1. Copy the full SHA
    1b716c7 View commit details
  2. Copy the full SHA
    e343a82 View commit details
  3. Copy the full SHA
    2a02272 View commit details

Commits on Jul 22, 2015

  1. merge variable_server_no

    baidu authored and baidu committed Jul 22, 2015
    Copy the full SHA
    c56b2f4 View commit details

Commits on Apr 25, 2016

  1. format code style

    Superjomn committed Apr 25, 2016
    Copy the full SHA
    1792e85 View commit details
Showing with 5,122 additions and 5,271 deletions.
  1. +0 −1 README.md
  2. +1 −1 src/apps/logistic/Makefile
  3. +445 −372 src/apps/logistic/lr.cpp
  4. +233 −214 src/apps/sent2vec/sent2vec.cpp
  5. +2 −1 src/apps/word2vec/Makefile
  6. +4 −0 src/apps/word2vec/demo.conf
  7. +51 −44 src/apps/word2vec/w2v.cpp
  8. +51 −44 src/apps/word2vec/w2v_local.cpp
  9. +536 −513 src/apps/word2vec/word2vec.h
  10. +630 −601 src/apps/word2vec/word2vec_global.h
  11. +122 −73 src/cluster/cluster.h
  12. +4 −1 src/cluster/demo.conf
  13. +94 −105 src/cluster/hashfrag.h
  14. +29 −32 src/cluster/message_classes.h
  15. +146 −148 src/cluster/server.h
  16. +38 −35 src/cluster/worker.h
  17. +126 −142 src/parameter/accessmethod.h
  18. +86 −92 src/parameter/global_pull_access.h
  19. +74 −83 src/parameter/global_push_access.h
  20. +46 −56 src/parameter/param.h
  21. +115 −124 src/parameter/sparsetable.h
  22. +88 −109 src/transfer/Listener.h
  23. +164 −191 src/transfer/Message.h
  24. +78 −84 src/transfer/Route.h
  25. +27 −39 src/transfer/ServerWorkerRoute.h
  26. +244 −252 src/transfer/transfer.h
  27. +5 −5 src/unittest/main.cpp
  28. +14 −9 src/unittest/utils/common_test.h
  29. +97 −112 src/utils/AsynExec.h
  30. +90 −114 src/utils/Barrier.h
  31. +66 −72 src/utils/BasicChannel.h
  32. +258 −284 src/utils/Buffer.h
  33. +175 −167 src/utils/CMDLine.h
  34. +93 −100 src/utils/ConfigParser.h
  35. +13 −16 src/utils/DaemonThread.h
  36. +7 −7 src/utils/HashFunction.h
  37. +15 −38 src/utils/RWLock.h
  38. +10 −16 src/utils/SpinLock.h
  39. +27 −39 src/utils/Timer.h
  40. +5 −8 src/utils/VirtualObject.h
  41. +65 −69 src/utils/common.h
  42. +18 −22 src/utils/file.h
  43. +26 −44 src/utils/hashmap.h
  44. +25 −27 src/utils/localenv.h
  45. +31 −44 src/utils/mpi.h
  46. +92 −105 src/utils/queue.h
  47. +16 −18 src/utils/random.h
  48. +45 −49 src/utils/shell.h
  49. +89 −103 src/utils/string.h
  50. +195 −215 src/utils/vec.h
  51. +204 −217 src/utils/vec1.h
  52. +7 −14 src/utils/zmq.h
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -16,4 +16,3 @@ Dependency
* zlib-1.2.8
* sparsehash-2.0.2
* openmpi-1.8.5
* gflags
2 changes: 1 addition & 1 deletion src/apps/logistic/Makefile
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ CXX=mpicxx
CC=gcc
BIN=./bin

CXXFLAGS= -g -std=c++11 -pthread -lpthread -lgtest -lgtest_main -lzmq -lglog -lz -lgflags
CXXFLAGS= -g -std=c++11 -pthread -lpthread -lgtest -lgtest_main -lzmq -lglog -lz
LOCAL_ROOT=../../../third/local

THIRD_INCPATH=-isystem $(LOCAL_ROOT)/include \
Loading