Giter VIP home page Giter VIP logo

shad's People

Contributors

burcuozcelik avatar cychan-lbnl avatar mdrocco avatar mfbalin avatar mminutoli avatar nanmiaowu avatar tjstavenger-pnnl avatar vitocastellana avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

shad's Issues

Implement STL compliant vector

There is no need to support everything. We want to have a first cut of functionalities as a proof of concept. Refinements will follow in the next sprints.

Add Event Logging

The idea is to use logging to later analyze events. Ideally, the output of the logger should be used as input of data-analysis scripts.

The analysis scripts should produce statistics and plots to visualize the data.

Add integration with TrevisCI

Configure the project so that it can be built by TrevisCI.

We should have:

  • Build and test on linux
  • Build and test on macos (if supported)
  • Build with both clang and gcc.

One object per locality allocation.

We need a way to allocate objects in all the localities. It is useful in many ways:

  • we can use it to implement global reductions
  • algorithms like Louvain benefits from local data structures to speed things up.

Check correctness of performance tests on multiple localities

  • Check correctness of performance tests on multiple localities
  • Update local hashmap test
  • Add localset test
  • Add the following to the README:

Google Benchmark

The Google Benchmark framework is only required if you want to run the performance benchmarks. You can install it following these instructions:

git clone https://github.com/google/benchmark.git
cd benchmark
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=RELEASE
make
make install

Build SHAD

Before attempting to build SHAD, please take a look at the requirements in Install Dependencies. In this first release, SHAD has full support only for the TBB run-time system. Future releases will provide additional backends.

git clone <url-to-SHAD-repo>  # or untar the SHAD source code.
cd shad
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=$SHADROOT  \
         -DCMAKE_BUILD_TYPE=Release        \
         -DSHAD_RUNTIME_SYSTEM=TBB         \
         -DTBB_ROOT=$TBBROOT               \
         -DGTEST_ROOT=$GTESTROOT           \
         -DGPERFTOOLS_ROOT=$GPERFTOOLSROOT \
         -Dbenchmark_ROOT=$BENCHMARKROOT
make -j <SOMETHING_REASONABLE> && make install

Improve extensibility of SHAD system

Currently new systems that implement the SHAD API must all be contained within the same SHAD source code repository due to the way imports/includes are handled. Refactor the includes & build to support extending SHAD from separate Git repositories.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.