项目作者: alpha-unito

项目描述 :
A C++ framework for data analytics pipelines
高级语言: C++
项目地址: git://github.com/alpha-unito/pico.git
创建时间: 2016-11-30T21:40:23Z
项目社区:https://github.com/alpha-unito/pico

开源协议:GNU Lesser General Public License v3.0

下载


PiCo: High-Performance Data-Analytics Pipelines in C++

Travis Build Status
License: LGPL v3
GitHub tag
GitHub Issues

PiCo (Pipeline Composition) is an open-source C++11 header-only DSL for high-performance data analytics, featuring low latency, high throughput, and minimal memory footprint on multi-core platforms.

Take a look to the word-count code to see how easy is writing a PiCo pipeline!

Report bugs + get help

https://github.com/alpha-unito/pico/issues/new

Build and run tests

The following steps require cmake >=3.1 as build system.

Get PiCo:

  1. git clone https://github.com/alpha-unito/pico.git

The current implementation is based on FastFlow as runtime system.
Get it and a link it:

  1. cd pico
  2. git clone https://github.com/fastflow/fastflow.git
  3. ln -s fastflow/ff .

:rescue_worker_helmet: A better solution for including FastFlow as dependency is under development!

Build and run tests and examples: (from pico root directory)

  1. mkdir build && cd build
  2. cmake .. -DPICO_ENABLE_UNIT_TEST=ON
  3. cmake --build .
  4. ctest

Use PiCo in your code

Good news! PiCo is header-only, you do not need to build/link any library to use it in your code.
Just include PiCo headers at the beginning of your source file:

  1. #include "pico/pico.hpp"

and use good ol’ compiler flags to include PiCo (and FastFlow) when compiling your app:

  1. git clone https://github.com/alpha-unito/pico.git
  2. cd pico
  3. git clone https://github.com/fastflow/fastflow.git
  4. ln -s fastflow/ff .
  5. g++ -I/path/to/pico/include -Iff app.cc

:rescue_worker_helmet: A modern CMake-based solution for linking PiCo (with its dependencies) is under development!

Examples

The examples folder contains some proof-of-concept applications, showing the PiCo user experience:

PiCo Team

Maurizio Drocco maurizio.drocco@pnnl.gov (maintainer)
Claudia Misale c.misale@ibm.com (creator + co-maintainer)
Alberto Riccardo Martinelli alberto.martinelli@edu.unito.it (co-maintainer)

Contributors

Marco Aldinucci aldinuc@di.unito.it (boss)
Massimo Torquati torquati@di.unipi.it (FastFlow maintainer)
Guy Tremblay tremblay.guy@uqam.ca (DSL wizard)

How to cite PiCo

C. Misale, M. Drocco, G. Tremblay, A. R. Martinelli, and M. Aldinucci, “PiCo: High-Performance Data Analytics Pipelines in Modern C++,” Future Generation Computer Systems, Volume 87, 2018.
PiCo_DOI_badge
PiCo_BibTexview
PiCo_BibTexdownload
PiCo_RISdownload