keyword
stringclasses
7 values
repo_name
stringlengths
8
98
file_path
stringlengths
4
244
file_extension
stringclasses
29 values
file_size
int64
0
84.1M
line_count
int64
0
1.6M
content
stringlengths
1
84.1M
language
stringclasses
14 values
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/lapack/clarf.f
.f
6,295
233
*> \brief \b CLARF * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download CLARF + dependencies *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/clarf.f...
Fortran
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/lapack/dladiv.f
.f
2,969
129
*> \brief \b DLADIV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLADIV + dependencies *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dladi...
Fortran
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/scripts/eigen_gen_credits.cpp
.cpp
6,384
233
#include <string> #include <sstream> #include <iostream> #include <fstream> #include <iomanip> #include <map> #include <list> using namespace std; // this function takes a line that may contain a name and/or email address, // and returns just the name, while fixing the "bad cases". std::string contributor_name(const ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/scripts/relicense.py
.py
2,368
70
# This file is part of Eigen, a lightweight C++ template library # for linear algebra. # # Copyright (C) 2012 Keir Mierle <mierle@gmail.com> # # This Source Code Form is subject to the terms of the Mozilla # Public License v. 2.0. If a copy of the MPL was not distributed # with this file, You can obtain one at http://m...
Python
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/bench_sum.cpp
.cpp
320
19
#include <iostream> #include <Eigen/Core> using namespace Eigen; using namespace std; int main() { typedef Matrix<SCALAR,Eigen::Dynamic,1> Vec; Vec v(SIZE); v.setZero(); v[0] = 1; v[1] = 2; for(int i = 0; i < 1000000; i++) { v.coeffRef(0) += v.sum() * SCALAR(1e-20); } cout << v.sum() << endl; }
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/quat_slerp.cpp
.cpp
6,006
248
#include <iostream> #include <Eigen/Geometry> #include <bench/BenchTimer.h> using namespace Eigen; using namespace std; template<typename Q> EIGEN_DONT_INLINE Q nlerp(const Q& a, const Q& b, typename Q::Scalar t) { return Q((a.coeffs() * (1.0-t) + b.coeffs() * t).normalized()); } template<typename Q> EIGEN_DONT_...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/BenchSparseUtil.h
.h
3,932
150
#include <Eigen/Sparse> #include <bench/BenchTimer.h> #include <set> using namespace std; using namespace Eigen; using namespace Eigen; #ifndef SIZE #define SIZE 1024 #endif #ifndef DENSITY #define DENSITY 0.01 #endif #ifndef SCALAR #define SCALAR double #endif typedef SCALAR Scalar; typedef Matrix<Scalar,Dynamic...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/BenchTimer.h
.h
4,392
196
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2008-2010 Gael Guennebaud <gael.guennebaud@inria.fr> // Copyright (C) 2009 Benoit Jacob <jacob.benoit.1@gmail.com> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If ...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/sparse_setter.cpp
.cpp
13,761
486
//g++ -O3 -g0 -DNDEBUG sparse_product.cpp -I.. -I/home/gael/Coding/LinearAlgebra/mtl4/ -DDENSITY=0.005 -DSIZE=10000 && ./a.out //g++ -O3 -g0 -DNDEBUG sparse_product.cpp -I.. -I/home/gael/Coding/LinearAlgebra/mtl4/ -DDENSITY=0.05 -DSIZE=2000 && ./a.out // -DNOGMM -DNOMTL -DCSPARSE // -I /home/gael/Coding/LinearAlgebr...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/basicbenchmark.h
.h
1,669
64
#ifndef EIGEN_BENCH_BASICBENCH_H #define EIGEN_BENCH_BASICBENCH_H enum {LazyEval, EarlyEval, OmpEval}; template<int Mode, typename MatrixType> void benchBasic_loop(const MatrixType& I, MatrixType& m, int iterations) __attribute__((noinline)); template<int Mode, typename MatrixType> void benchBasic_loop(const Matrix...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/eig33.cpp
.cpp
7,244
196
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2010 Gael Guennebaud <gael.guennebaud@inria.fr> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can ob...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/sparse_randomsetter.cpp
.cpp
3,358
126
#define NOGMM #define NOMTL #include <map> #include <ext/hash_map> #include <google/dense_hash_map> #include <google/sparse_hash_map> #ifndef SIZE #define SIZE 10000 #endif #ifndef DENSITY #define DENSITY 0.01 #endif #ifndef REPEAT #define REPEAT 1 #endif #include "BenchSparseUtil.h" #ifndef MINDENSITY #define M...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/sparse_dense_product.cpp
.cpp
5,101
188
//g++ -O3 -g0 -DNDEBUG sparse_product.cpp -I.. -I/home/gael/Coding/LinearAlgebra/mtl4/ -DDENSITY=0.005 -DSIZE=10000 && ./a.out //g++ -O3 -g0 -DNDEBUG sparse_product.cpp -I.. -I/home/gael/Coding/LinearAlgebra/mtl4/ -DDENSITY=0.05 -DSIZE=2000 && ./a.out // -DNOGMM -DNOMTL -DCSPARSE // -I /home/gael/Coding/LinearAlgebr...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/benchFFT.cpp
.cpp
2,806
116
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2009 Mark Borgerding mark a borgerding net // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can obtain ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/sparse_transpose.cpp
.cpp
2,347
105
//g++ -O3 -g0 -DNDEBUG sparse_transpose.cpp -I.. -I/home/gael/Coding/LinearAlgebra/mtl4/ -DDENSITY=0.005 -DSIZE=10000 && ./a.out // -DNOGMM -DNOMTL // -DCSPARSE -I /home/gael/Coding/LinearAlgebra/CSparse/Include/ /home/gael/Coding/LinearAlgebra/CSparse/Lib/libcsparse.a #ifndef SIZE #define SIZE 10000 #endif #ifndef...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/sparse_trisolver.cpp
.cpp
6,114
221
//g++ -O3 -g0 -DNDEBUG sparse_product.cpp -I.. -I/home/gael/Coding/LinearAlgebra/mtl4/ -DDENSITY=0.005 -DSIZE=10000 && ./a.out //g++ -O3 -g0 -DNDEBUG sparse_product.cpp -I.. -I/home/gael/Coding/LinearAlgebra/mtl4/ -DDENSITY=0.05 -DSIZE=2000 && ./a.out // -DNOGMM -DNOMTL // -I /home/gael/Coding/LinearAlgebra/CSparse/...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/benchmark-blocking-sizes.cpp
.cpp
22,259
678
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2015 Benoit Jacob <benoitjacob@google.com> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can obtain ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/geometry.cpp
.cpp
3,307
127
#include <iostream> #include <Eigen/Geometry> #include <bench/BenchTimer.h> using namespace std; using namespace Eigen; #ifndef SCALAR #define SCALAR float #endif #ifndef SIZE #define SIZE 8 #endif typedef SCALAR Scalar; typedef NumTraits<Scalar>::Real RealScalar; typedef Matrix<RealScalar,Dynamic,Dynamic> A; type...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/benchBlasGemm.cpp
.cpp
6,313
220
// g++ -O3 -DNDEBUG -I.. -L /usr/lib64/atlas/ benchBlasGemm.cpp -o benchBlasGemm -lrt -lcblas // possible options: // -DEIGEN_DONT_VECTORIZE // -msse2 // #define EIGEN_DEFAULT_TO_ROW_MAJOR #define _FLOAT #include <iostream> #include <Eigen/Core> #include "BenchTimer.h" // include the BLAS headers extern "C" {...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/bench_gemm.cpp
.cpp
10,885
342
// g++-4.4 bench_gemm.cpp -I .. -O2 -DNDEBUG -lrt -fopenmp && OMP_NUM_THREADS=2 ./a.out // icpc bench_gemm.cpp -I .. -O3 -DNDEBUG -lrt -openmp && OMP_NUM_THREADS=2 ./a.out // Compilation options: // // -DSCALAR=std::complex<double> // -DSCALARA=double or -DSCALARB=double // -DHAVE_BLAS // -DDECOUPLED // #include...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/benchmarkSlice.cpp
.cpp
835
39
// g++ -O3 -DNDEBUG benchmarkX.cpp -o benchmarkX && time ./benchmarkX #include <iostream> #include <Eigen/Core> using namespace std; using namespace Eigen; #ifndef REPEAT #define REPEAT 10000 #endif #ifndef SCALAR #define SCALAR float #endif int main(int argc, char *argv[]) { typedef Matrix<SCALAR, Eigen::Dynam...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/quatmul.cpp
.cpp
1,097
48
#include <iostream> #include <Eigen/Core> #include <Eigen/Geometry> #include <bench/BenchTimer.h> using namespace Eigen; template<typename Quat> EIGEN_DONT_INLINE void quatmul_default(const Quat& a, const Quat& b, Quat& c) { c = a * b; } template<typename Quat> EIGEN_DONT_INLINE void quatmul_novec(const Quat& a, ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/benchmarkXcwise.cpp
.cpp
605
36
// g++ -O3 -DNDEBUG benchmarkX.cpp -o benchmarkX && time ./benchmarkX #include <iostream> #include <Eigen/Core> using namespace std; using namespace Eigen; #ifndef VECTYPE #define VECTYPE VectorXLd #endif #ifndef VECSIZE #define VECSIZE 1000000 #endif #ifndef REPEAT #define REPEAT 1000 #endif int main(int argc, c...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/vdw_new.cpp
.cpp
1,203
57
#include <iostream> #include <Eigen/Core> using namespace Eigen; #ifndef SCALAR #define SCALAR float #endif #ifndef SIZE #define SIZE 10000 #endif #ifndef REPEAT #define REPEAT 10000 #endif typedef Matrix<SCALAR, Eigen::Dynamic, 1> Vec; using namespace std; SCALAR E_VDW(const Vec &interactions1, const Vec &inter...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/bench_multi_compilers.sh
.sh
618
29
#!/bin/bash if (($# < 2)); then echo "Usage: $0 compilerlist.txt benchfile.cpp" else compilerlist=$1 benchfile=$2 g=0 source $compilerlist # for each compiler, compile benchfile and run the benchmark for (( i=0 ; i<g ; ++i )) ; do # check the compiler exists compiler=`echo ${CLIST[$i]} | cut -d " " -f 1` ...
Shell
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/BenchUtil.h
.h
2,529
93
#ifndef EIGEN_BENCH_UTIL_H #define EIGEN_BENCH_UTIL_H #include <Eigen/Core> #include "BenchTimer.h" using namespace std; using namespace Eigen; #include <boost/preprocessor/repetition/enum_params.hpp> #include <boost/preprocessor/repetition.hpp> #include <boost/preprocessor/seq.hpp> #include <boost/preprocessor/arr...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/analyze-blocking-sizes.cpp
.cpp
28,983
877
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2015 Benoit Jacob <benoitjacob@google.com> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can obtain ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/spmv.cpp
.cpp
6,096
234
//g++-4.4 -DNOMTL -Wl,-rpath /usr/local/lib/oski -L /usr/local/lib/oski/ -l oski -l oski_util -l oski_util_Tid -DOSKI -I ~/Coding/LinearAlgebra/mtl4/ spmv.cpp -I .. -O2 -DNDEBUG -lrt -lm -l oski_mat_CSC_Tid -loskilt && ./a.out r200000 c200000 n100 t1 p1 #define SCALAR double #include <iostream> #include <algor...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/benchGeometry.cpp
.cpp
3,598
135
#include <iostream> #include <iomanip> #include <Eigen/Core> #include <Eigen/Geometry> #include <bench/BenchTimer.h> using namespace Eigen; using namespace std; #ifndef REPEAT #define REPEAT 1000000 #endif enum func_opt { TV, TMATV, TMATVMAT, }; template <class res, class arg1, class arg2, int opt> str...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/bench_reverse.cpp
.cpp
2,159
85
#include <iostream> #include <Eigen/Core> #include <bench/BenchUtil.h> using namespace Eigen; #ifndef REPEAT #define REPEAT 100000 #endif #ifndef TRIES #define TRIES 20 #endif typedef double Scalar; template <typename MatrixType> __attribute__ ((noinline)) void bench_reverse(const MatrixType& m) { int rows = m.r...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/benchEigenSolver.cpp
.cpp
5,788
213
// g++ -DNDEBUG -O3 -I.. benchEigenSolver.cpp -o benchEigenSolver && ./benchEigenSolver // options: // -DBENCH_GMM // -DBENCH_GSL -lgsl /usr/lib/libcblas.so.3 // -DEIGEN_DONT_VECTORIZE // -msse2 // -DREPEAT=100 // -DTRIES=10 // -DSCALAR=double #include <iostream> #include <Eigen/Core> #include <Eigen/QR> #in...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/basicbenchmark.cpp
.cpp
1,107
36
#include <iostream> #include "BenchUtil.h" #include "basicbenchmark.h" int main(int argc, char *argv[]) { DISABLE_SSE_EXCEPTIONS(); // this is the list of matrix type and size we want to bench: // ((suffix) (matrix size) (number of iterations)) #define MODES ((3d)(3)(4000000)) ((4d)(4)(1000000)) ((Xd)(4)(100...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/benchmarkX.cpp
.cpp
640
37
// g++ -fopenmp -I .. -O3 -DNDEBUG -finline-limit=1000 benchmarkX.cpp -o b && time ./b #include <iostream> #include <Eigen/Core> using namespace std; using namespace Eigen; #ifndef MATTYPE #define MATTYPE MatrixXLd #endif #ifndef MATSIZE #define MATSIZE 400 #endif #ifndef REPEAT #define REPEAT 100 #endif int mai...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/sparse_cholesky.cpp
.cpp
6,260
217
// #define EIGEN_TAUCS_SUPPORT // #define EIGEN_CHOLMOD_SUPPORT #include <iostream> #include <Eigen/Sparse> // g++ -DSIZE=10000 -DDENSITY=0.001 sparse_cholesky.cpp -I.. -DDENSEMATRI -O3 -g0 -DNDEBUG -DNBTRIES=1 -I /home/gael/Coding/LinearAlgebra/taucs_full/src/ -I/home/gael/Coding/LinearAlgebra/taucs_full/build/lin...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/benchCholesky.cpp
.cpp
3,534
143
// g++ -DNDEBUG -O3 -I.. benchLLT.cpp -o benchLLT && ./benchLLT // options: // -DBENCH_GSL -lgsl /usr/lib/libcblas.so.3 // -DEIGEN_DONT_VECTORIZE // -msse2 // -DREPEAT=100 // -DTRIES=10 // -DSCALAR=double #include <iostream> #include <Eigen/Core> #include <Eigen/Cholesky> #include <bench/BenchUtil.h> using na...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/sparse_product.cpp
.cpp
8,999
324
//g++ -O3 -g0 -DNDEBUG sparse_product.cpp -I.. -I/home/gael/Coding/LinearAlgebra/mtl4/ -DDENSITY=0.005 -DSIZE=10000 && ./a.out //g++ -O3 -g0 -DNDEBUG sparse_product.cpp -I.. -I/home/gael/Coding/LinearAlgebra/mtl4/ -DDENSITY=0.05 -DSIZE=2000 && ./a.out // -DNOGMM -DNOMTL -DCSPARSE // -I /home/gael/Coding/LinearAlgebr...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/dense_solvers.cpp
.cpp
6,416
187
#include <iostream> #include "BenchTimer.h" #include <Eigen/Dense> #include <map> #include <vector> #include <string> #include <sstream> using namespace Eigen; std::map<std::string,Array<float,1,8,DontAlign|RowMajor> > results; std::vector<std::string> labels; std::vector<Array2i> sizes; template<typename Solver,type...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/benchVecAdd.cpp
.cpp
5,193
136
#include <iostream> #include <Eigen/Core> #include <bench/BenchTimer.h> using namespace Eigen; #ifndef SIZE #define SIZE 50 #endif #ifndef REPEAT #define REPEAT 10000 #endif typedef float Scalar; __attribute__ ((noinline)) void benchVec(Scalar* a, Scalar* b, Scalar* c, int size); __attribute__ ((noinline)) void be...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/product_threshold.cpp
.cpp
3,232
144
#include <iostream> #include <Eigen/Core> #include <bench/BenchTimer.h> using namespace Eigen; using namespace std; #define END 9 template<int S> struct map_size { enum { ret = S }; }; template<> struct map_size<10> { enum { ret = 20 }; }; template<> struct map_size<11> { enum { ret = 50 }; }; template<> struct ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/check_cache_queries.cpp
.cpp
3,269
102
#define EIGEN_INTERNAL_DEBUG_CACHE_QUERY #include <iostream> #include "../Eigen/Core" using namespace Eigen; using namespace std; #define DUMP_CPUID(CODE) {\ int abcd[4]; \ abcd[0] = abcd[1] = abcd[2] = abcd[3] = 0;\ EIGEN_CPUID(abcd, CODE, 0); \ std::cout << "The code " << CODE << " gives " \ ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/sparse_lu.cpp
.cpp
3,011
133
// g++ -I.. sparse_lu.cpp -O3 -g0 -I /usr/include/superlu/ -lsuperlu -lgfortran -DSIZE=1000 -DDENSITY=.05 && ./a.out #define EIGEN_SUPERLU_SUPPORT #define EIGEN_UMFPACK_SUPPORT #include <Eigen/Sparse> #define NOGMM #define NOMTL #ifndef SIZE #define SIZE 10 #endif #ifndef DENSITY #define DENSITY 0.01 #endif #ifnd...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/bench_norm.cpp
.cpp
11,652
361
#include <typeinfo> #include <iostream> #include <Eigen/Core> #include "BenchTimer.h" using namespace Eigen; using namespace std; template<typename T> EIGEN_DONT_INLINE typename T::Scalar sqsumNorm(T& v) { return v.norm(); } template<typename T> EIGEN_DONT_INLINE typename T::Scalar stableNorm(T& v) { return v.sta...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/benchmark.cpp
.cpp
790
40
// g++ -O3 -DNDEBUG -DMATSIZE=<x> benchmark.cpp -o benchmark && time ./benchmark #include <iostream> #include <Eigen/Core> #ifndef MATSIZE #define MATSIZE 3 #endif using namespace std; using namespace Eigen; #ifndef REPEAT #define REPEAT 40000000 #endif #ifndef SCALAR #define SCALAR double #endif int main(int ar...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/btl.hh
.hh
6,748
243
//===================================================== // File : btl.hh // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public ...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/bench.hh
.hh
4,827
169
//===================================================== // File : bench.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:16 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // modify it ...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/bench_parameter.hh
.hh
1,916
54
//===================================================== // File : bench_parameter.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:16 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // ...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/utils/utilities.h
.h
2,745
91
//============================================================================= // File : utilities.h // Created : mar jun 19 13:18:14 CEST 2001 // Author : Antoine YESSAYAN, Paul RASCLE, EDF // Project : SALOME // Copyright : EDF 2001 // $Header$ //==========================================================...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/utils/size_log.hh
.hh
1,645
55
//===================================================== // File : size_log.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:17 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or /...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/utils/xy_file.hh
.hh
2,213
76
//===================================================== // File : dump_file_x_y.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:20 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/init/init_function.hh
.hh
1,478
55
//===================================================== // File : init_function.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:18 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/init/init_vector.hh
.hh
1,416
38
//===================================================== // File : init_vector.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:18 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // modi...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/init/init_matrix.hh
.hh
2,295
65
//===================================================== // File : init_matrix.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:19 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // modi...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/timers/portable_perf_analyzer.hh
.hh
2,938
104
//===================================================== // File : portable_perf_analyzer.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, mar d�c 3 18:59:35 CET 2002 // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== /...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/timers/portable_perf_analyzer_old.hh
.hh
3,534
135
//===================================================== // File : portable_perf_analyzer.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, mar d�c 3 18:59:35 CET 2002 //===================================================== // // This program is free software; you can redistribute it and/o...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/timers/portable_timer.hh
.hh
3,534
188
//===================================================== // File : portable_timer.hh // Author : L. Plagne <laurent.plagne@edf.fr)> from boost lib // Copyright (C) EDF R&D, lun sep 30 14:23:17 CEST 2002 //===================================================== // // This program is free software; you can redistribute...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/timers/x86_perf_analyzer.hh
.hh
2,927
109
//===================================================== // File : x86_perf_analyzer.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, mar d�c 3 18:59:35 CET 2002 //===================================================== // // This program is free software; you can redistribute it and/or // ...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/timers/x86_timer.hh
.hh
5,294
247
//===================================================== // File : x86_timer.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, mar d�c 3 18:59:35 CET 2002 //===================================================== // // This program is free software; you can redistribute it and/or //...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/generic_bench/static/bench_static.hh
.hh
2,278
81
//===================================================== // File : bench_static.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:16 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // mod...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/gmm/main.cpp
.cpp
2,113
52
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/gmm/gmm_interface.hh
.hh
4,174
145
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/gmm/gmm_LU_solve_interface.hh
.hh
5,364
193
//===================================================== // File : blitz_LU_solve_interface.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:31 CEST 2002 //===================================================== // // This program is free software; you can redistri...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/ublas/ublas_interface.hh
.hh
4,342
142
//===================================================== // File : ublas_interface.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:27 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // ...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/ublas/main.cpp
.cpp
1,785
45
//===================================================== // File : main.cpp // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:27 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // modify it ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/tvmet/tvmet_interface.hh
.hh
3,017
105
//===================================================== // File : tvmet_interface.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:30 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // ...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/tvmet/main.cpp
.cpp
1,460
41
//===================================================== // File : main.cpp // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:30 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // modify it ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/tensors/main_vecmat.cpp
.cpp
624
22
//===================================================== // Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com> //===================================================== // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // wi...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/tensors/main_linear.cpp
.cpp
671
24
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You ca...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/tensors/main_matmat.cpp
.cpp
624
22
//===================================================== // Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com> //===================================================== // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // wi...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/tensors/tensor_interface.hh
.hh
3,190
106
//===================================================== // Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com> //===================================================== // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // wi...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/BLAS/blas_interface_impl.hh
.hh
4,811
148
#define BLAS_FUNC(NAME) CAT(CAT(SCALAR_PREFIX,NAME),_) template<> class blas_interface<SCALAR> : public c_interface_base<SCALAR> { public : static SCALAR fone; static SCALAR fzero; static inline std::string name() { return MAKE_STRING(CBLASNAME); } static inline void matrix_vector_product(gene_m...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/BLAS/blas.h
.h
35,158
676
#ifndef BLAS_H #define BLAS_H #define BLASFUNC(FUNC) FUNC##_ #ifdef __WIN64__ typedef long long BLASLONG; typedef unsigned long long BLASULONG; #else typedef long BLASLONG; typedef unsigned long BLASULONG; #endif int BLASFUNC(xerbla)(const char *, int *info, int); float BLASFUNC(sdot) (int *, float *, int *, ...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/BLAS/c_interface_base.h
.h
1,634
74
#ifndef BTL_C_INTERFACE_BASE_H #define BTL_C_INTERFACE_BASE_H #include "utilities.h" #include <vector> template<class real> class c_interface_base { public: typedef real real_type; typedef std::vector<real> stl_vector; typedef std::vector<stl_vector > stl_matrix; typedef real...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/BLAS/main.cpp
.cpp
2,963
74
//===================================================== // File : main.cpp // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:28 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // modify it ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/BLAS/blas_interface.hh
.hh
2,891
84
//===================================================== // File : blas_interface.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:28 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // m...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/mtl4/main.cpp
.cpp
1,943
47
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/mtl4/mtl4_LU_solve_interface.hh
.hh
5,364
193
//===================================================== // File : blitz_LU_solve_interface.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:31 CEST 2002 //===================================================== // // This program is free software; you can redistri...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/mtl4/mtl4_interface.hh
.hh
4,210
145
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/STL/STL_interface.hh
.hh
5,838
245
//===================================================== // File : STL_interface.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:24 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // mo...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/STL/main.cpp
.cpp
1,828
43
//===================================================== // File : main.cpp // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:23 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // modify it ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen3/main_vecmat.cpp
.cpp
1,447
37
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen3/btl_tiny_eigen3.cpp
.cpp
1,664
47
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen3/main_linear.cpp
.cpp
1,285
36
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen3/main_matmat.cpp
.cpp
1,381
36
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen3/main_adv.cpp
.cpp
1,799
45
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen3/eigen3_interface.hh
.hh
8,077
241
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/blaze/blaze_interface.hh
.hh
4,012
141
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/blaze/main.cpp
.cpp
1,645
41
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/blitz/tiny_blitz_interface.hh
.hh
3,100
107
//===================================================== // File : tiny_blitz_interface.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:30 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/o...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/blitz/blitz_interface.hh
.hh
4,129
148
//===================================================== // File : blitz_interface.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:30 CEST 2002 // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // ...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/blitz/blitz_LU_solve_interface.hh
.hh
5,364
193
//===================================================== // File : blitz_LU_solve_interface.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:31 CEST 2002 //===================================================== // // This program is free software; you can redistri...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/blitz/btl_blitz.cpp
.cpp
1,962
52
//===================================================== // File : main.cpp // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:30 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // modify it ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/blitz/btl_tiny_blitz.cpp
.cpp
1,393
39
//===================================================== // File : main.cpp // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:30 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // modify it ...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen2/main_vecmat.cpp
.cpp
1,456
37
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen2/eigen2_interface.hh
.hh
5,151
169
//===================================================== // Copyright (C) 2008 Gael Guennebaud <g.gael@free.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen2/main_linear.cpp
.cpp
1,205
35
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen2/main_matmat.cpp
.cpp
1,384
36
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen2/btl_tiny_eigen2.cpp
.cpp
1,664
47
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/libs/eigen2/main_adv.cpp
.cpp
1,799
45
//===================================================== // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> //===================================================== // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as publis...
C++
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/actions/action_symv.hh
.hh
3,691
140
//===================================================== // File : action_symv.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:19 CEST 2002 //===================================================== // // This program is free software; you can redistribute it and/or // modi...
Unknown
2D
JaeHyunLee94/mpm2d
external/eigen-3.3.9/bench/btl/actions/action_trisolve_matrix.hh
.hh
4,061
166
//===================================================== // File : action_matrix_matrix_product.hh // Author : L. Plagne <laurent.plagne@edf.fr)> // Copyright (C) EDF R&D, lun sep 30 14:23:19 CEST 2002 //===================================================== // // This program is free software; you can redistribute ...
Unknown