-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from JamesYang007/vectorized_beval
Fully refactored with new vectorized beval method
- Loading branch information
Showing
71 changed files
with
3,251 additions
and
3,833 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,4 @@ | ||
// Export header file | ||
|
||
#pragma once | ||
|
||
#include "fastad_bits/forward/core/dualnum.hpp" | ||
#include "fastad_bits/forward/core/forward.hpp" | ||
|
||
#include "fastad_bits/reverse/core/binary.hpp" | ||
#include "fastad_bits/reverse/core/bind.hpp" | ||
#include "fastad_bits/reverse/core/constant.hpp" | ||
#include "fastad_bits/reverse/core/dot.hpp" | ||
#include "fastad_bits/reverse/core/eq.hpp" | ||
#include "fastad_bits/reverse/core/eval.hpp" | ||
#include "fastad_bits/reverse/core/expr_base.hpp" | ||
#include "fastad_bits/reverse/core/for_each.hpp" | ||
#include "fastad_bits/reverse/core/glue.hpp" | ||
#include "fastad_bits/reverse/core/if_else.hpp" | ||
#include "fastad_bits/reverse/core/math.hpp" | ||
#include "fastad_bits/reverse/core/norm.hpp" | ||
#include "fastad_bits/reverse/core/pow.hpp" | ||
#include "fastad_bits/reverse/core/prod.hpp" | ||
#include "fastad_bits/reverse/core/sqrt.hpp" | ||
#include "fastad_bits/reverse/core/sum.hpp" | ||
#include "fastad_bits/reverse/core/unary.hpp" | ||
#include "fastad_bits/reverse/core/value_view.hpp" | ||
#include "fastad_bits/reverse/core/var.hpp" | ||
#include "fastad_bits/reverse/core/var_view.hpp" | ||
//#include "fastad_bits/reverse/core/hessian.hpp" | ||
|
||
#include "fastad_bits/util/shape_traits.hpp" | ||
#include "fastad_bits/util/type_traits.hpp" | ||
|
||
#include "fastad_bits/reverse/stat/normal.hpp" | ||
#include "fastad_bits/reverse/stat/uniform.hpp" | ||
#include "fastad_bits/reverse/stat/bernoulli.hpp" | ||
#include "fastad_bits/reverse/stat/wishart.hpp" | ||
#include "fastad_bits/forward.hpp" | ||
#include "fastad_bits/reverse.hpp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#pragma once | ||
#include "forward/core.hpp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
#include "core/dualnum.hpp" | ||
#include "core/forward.hpp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#pragma once | ||
|
||
#include "reverse/core.hpp" | ||
#include "reverse/stat.hpp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#pragma once | ||
#include "fastad_bits/reverse/core/binary.hpp" | ||
#include "fastad_bits/reverse/core/bind.hpp" | ||
#include "fastad_bits/reverse/core/constant.hpp" | ||
#include "fastad_bits/reverse/core/dot.hpp" | ||
#include "fastad_bits/reverse/core/eq.hpp" | ||
#include "fastad_bits/reverse/core/eval.hpp" | ||
#include "fastad_bits/reverse/core/expr_base.hpp" | ||
#include "fastad_bits/reverse/core/for_each.hpp" | ||
#include "fastad_bits/reverse/core/glue.hpp" | ||
#include "fastad_bits/reverse/core/if_else.hpp" | ||
#include "fastad_bits/reverse/core/norm.hpp" | ||
#include "fastad_bits/reverse/core/pow.hpp" | ||
#include "fastad_bits/reverse/core/prod.hpp" | ||
#include "fastad_bits/reverse/core/sum.hpp" | ||
#include "fastad_bits/reverse/core/unary.hpp" | ||
#include "fastad_bits/reverse/core/value_view.hpp" | ||
#include "fastad_bits/reverse/core/var.hpp" | ||
#include "fastad_bits/reverse/core/var_view.hpp" | ||
//#include "fastad_bits/reverse/core/hessian.hpp" |
Oops, something went wrong.