1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
// Copyright 2016, Tobias Hermann.
// https://github.com/Dobiasd/frugally-deep
// Distributed under the MIT License.
// (See accompanying LICENSE file or at
// https://opensource.org/licenses/MIT)
#pragma once
#if defined(__GNUC__) || defined(__GNUG__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wctor-dtor-privacy"
#pragma GCC diagnostic ignored "-Wold-style-cast"
#pragma GCC diagnostic ignored "-Wsign-conversion"
#pragma GCC diagnostic ignored "-Weffc++"
#pragma GCC diagnostic ignored "-Wconversion"
#pragma GCC diagnostic ignored "-Wshadow"
#endif
#if defined _MSC_VER
#pragma warning(push)
#pragma warning(disable : 4706)
#pragma warning(disable : 4996)
#endif
#include <Eigen/Core>
#if defined _MSC_VER
#pragma warning(pop)
#endif
#if defined(__GNUC__) || defined(__GNUG__)
#pragma GCC diagnostic pop
#endif
#include <fplus/fplus.hpp>
#include <cmath>
#include <memory>
#include <stdexcept>
#include <string>
#include <vector>
namespace fdeep {
namespace internal {
inline std::runtime_error error(const std::string& error)
{
return std::runtime_error(error);
}
inline void raise_error(const std::string& msg)
{
throw error(msg);
}
inline void assertion(bool cond, const std::string& error)
{
if (!cond) {
raise_error(error);
}
}
#ifdef FDEEP_FLOAT_TYPE
typedef FDEEP_FLOAT_TYPE float_type;
#else
typedef float float_type;
#endif
#if EIGEN_VERSION_AT_LEAST(3, 3, 0)
typedef Eigen::Index EigenIndex;
#else
typedef Eigen::DenseIndex EigenIndex;
#endif
typedef std::vector<float_type> float_vec_unaligned;
template <typename T>
using aligned_vector = std::vector<T, Eigen::aligned_allocator<T>>;
typedef aligned_vector<float_type> float_vec;
typedef fplus::shared_ref<float_vec> shared_float_vec;
using ColMajorMatrixXf = Eigen::Matrix<float_type, Eigen::Dynamic, Eigen::Dynamic, Eigen::ColMajor>;
using RowMajorMatrixXf = Eigen::Matrix<float_type, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>;
using ArrayXf = Eigen::Array<float_type, Eigen::Dynamic, Eigen::Dynamic>;
using ArrayXf1D = Eigen::Array<float_type, Eigen::Dynamic, 1>;
using MappedRowMajorMatrixXf = Eigen::Map<RowMajorMatrixXf, Eigen::Aligned>;
inline float_type tanh_typed(float_type x)
{
return std::tanh(x);
}
}
}
|