Giter Club home page Giter Club logo

bwagerson / math Goto Github PK

View Code? Open in Web Editor NEW

This project forked from stan-dev/math

0.0 0.0 0.0 385.81 MB

The Stan Math Library is a C++, reverse-mode automatic differentiation library designed to be usable, extensive and extensible, efficient, scalable, stable, portable, and redistributable in order to facilitate the construction and utilization of algorithms that utilize derivatives.

Home Page: https://mc-stan.org

License: BSD 3-Clause "New" or "Revised" License

HTML 45.17% Shell 0.08% CSS 0.12% C++ 52.12% C 1.33% Perl 0.01% M4 0.01% Batchfile 0.01% CMake 0.06% Max 0.01% XSLT 0.15% Python 0.46% Cuda 0.08% Makefile 0.07% Assembly 0.07% Eiffel 0.01% JavaScript 0.21% TeX 0.01% CWeb 0.04% Tcl 0.01%

math's Introduction

The Stan Math Library is a C++, reverse-mode automatic differentiation library designed to be usable, extensive and extensible, efficient, scalable, stable, portable, and redistributable in order to facilitate the construction and utilization of algorithms that utilize derivatives.

DOI

Licensing

The Stan Math Library is licensed under the new BSD license.

Required Libraries

Stan Math depends on three libraries:

These are distributed under the lib/ subdirectory. Only these versions of the dependent libraries have been tested with Stan Math.

Installation

The Stan Math Library is largely a header-only C++ library, with exceptions for the Sundials code.

A simple hello world program using Stan Math is as follows:

#include <stan/math.hpp>
#include <iostream>

int main() {
  std::cout << "log normal(1 | 2, 3)="
            << stan::math::normal_log(1, 2, 3)
            << std::endl;
}

If this is in the file /path/to/foo/foo.cpp, then you can compile and run this with something like this, with the path/to business replaced with actual paths:

> cd /path/to/foo
> clang++ -std=c++1y -I /path/to/stan-math -I /path/to/Eigen -I /path/to/boost -I /path/to/sundials foo.cpp
> ./a.out
log normal(1 | 2, 3)=-2.07311

The -I includes provide paths pointing to the four necessary includes:

  • Stan Math Library: path to source directory that contains stan as a subdirectory
  • Eigen C++ Matrix Library: path to source directory that contains Eigen as a subdirectory
  • Boost C++ Library: path to source directory that contains boost as a subdirectory
  • SUNDIALS: path to source directory that contains cvodes and idas as a subdirectory

Note that the paths should not include the final directories stan, Eigen, or boost on the paths. An example of a real instantiation:

clang++ -std=c++1y -I ~/stan-dev/math -I ~/stan-dev/math/lib/eigen_3.3.3/ -I ~/stan-dev/math/lib/boost_1.69.0/ -I ~/stan-dev/math/lib/sundials_4.1.0/include foo.cpp

The following directories all exist below the links given to -I: ~/stan-dev/math/stan and ~/stan-dev/math/lib/eigen_3.3.3/Eigen and ~stan-dev/math/lib/boost_1.69.0/boost and ~stan-dev/math/lib/sundials_4.1.0/include.

Other Compilers

There's nothing special about clang++ --- the g++ compiler behaves the same way. You'll need to modify the commands for other compilers, which will need to be up-to-date enough to compile the Stan Math Library.

math's People

Contributors

syclik avatar peterli2016 avatar seantalts avatar betanalpha avatar maverickg avatar stevebronder avatar rtrangucci avatar stan-buildbot avatar mbrubake avatar randommm avatar rok-cesnovar avatar bbbales2 avatar charlesm93 avatar mitzimorris avatar akucukelbir avatar sakrejda avatar yashikno avatar bgoodri avatar vmatthijs avatar jrnold avatar wds15 avatar weberse2 avatar t4c1 avatar matthewdhoffman avatar aadler avatar roualdes avatar dustinvtran avatar ksvanhorn avatar goedman avatar dpsimpson avatar

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.