View on GitHub

Jules documentation

Documentation of the Jules library

Home Tutorial Modules Entities Files

Header file array/blas.hpp

#define JULES_ARRAY_BLAS_H

namespace jules
{
    namespace blas
    {
        template <typename T>
        struct invalid;
        
        template <typename T>
        struct cblas;
        
        template <>
        struct cblas<float>;
        
        template <>
        struct cblas<double>;
        
        template <typename T>
        auto safe_int_cast(T value);
        
        template <typename T>
        matrix<T> product(const matrix<T>& lhs, const matrix<T>& rhs);
    }
}