yanring / MiniPs

A minimum parameter server system with fault tolerance, elasticity and support YARN.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MiniPs

Install & Run

Git clone this repository by

git clone https://github.com/RickAi/MiniPs.git
cd MiniPs

Create a directory for putting compiled files, and configure cmake.

mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug

See the make list by make help, and make anything in the list by make ${ANYTHING}

cd build/     # cd to the build directory
make -j4      # build all the targets
./HuskyUnitTest  # run all unit tests
./HuskyUnitTest --gtest_filter=TestServerThread.RegisterModel  # run a specific test

Some tools:

  • glog. You may use GLOG_logtostderr=1 ./HuskyUnitTest to print the LOG(INFO) information to the console.
  • gtest.
  • Actor model
  • cmake
  • C++ (C++11, multi-threading, std::move, rvalue reference, classes...)

More

Project details refers to: HERE

About

A minimum parameter server system with fault tolerance, elasticity and support YARN.

License:Apache License 2.0


Languages

Language:C++ 74.6%Language:Java 15.9%Language:Python 5.5%Language:CMake 4.0%