Git Product home page Git Product logo

stencilprobe's Introduction

stencilProbe

Comparison of performance/complexity of stencil code implementations for different architectures. Metrics: Performance (measured in GLUPS) and code complexity.

  1. Rationale ============
  • Naming Scheme: BENCHMARK_ARCHITECTURE_VARIANT.SUFFIX e.g. jacobi3d_opensse_vanilla.cpp.

  • Architectures:

    • serial = standard, sequential code
    • openmp = parallelized with OpenMP
    • cuda = manually parallelized with CUDA
  • Variants:

    • vanilla: straightforward code
    • avx: manually vectorized code with AVX intrinsics
  • Benchmarks:

    • jacobi3d: simple 3D Jacobi iteration
  1. Compiling/Running ====================

stencilProbe comes with a standard CMake script, configuration of the compiler is hence done with "-D CMAKE_CXX_COMPILER=..." and "-D CMAKE_CXX_FLAGS=...".

cd stencilProbe mkdir build cd build cmake ../ make -j10 ./jacobi3d_serial_vanilla 128 128 128 10 >/dev/null

  1. (not so) FAQ ===============

Q: All those codes are horribly redundant. Why? A: The purpose of the codes is to track which (minimal) modifications to a sequential, vanilla code are required to implement certain features.

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.