https://hal.archives-ouvertes.fr/hal-02128878
Raw File
Tip revision: 4201397494d9af8b687117e8ff4d85a8944f5c5a authored by Software Heritage on 11 June 2019, 10:15:02 UTC
hal: Deposit 298 in collection hal
Tip revision: 4201397
fflas_enum.h
/* fflas_enum.h
 * Copyright (C) The FFLAS-FFPACK group
 *
 * Written by Clement Pernet <Clement.Pernet@imag.fr>
 *
 * ========LICENCE========
 * This file is part of the library FFLAS-FFPACK.
 *
 * FFLAS-FFPACK is free software: you can redistribute it and/or modify
 * it under the terms of the  GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * ========LICENCE========
 *.
 */
#ifndef __FFLASFFPACK_enum_INL
#define __FFLASFFPACK_enum_INL

namespace FFLAS {

    /// Storage by row or col ?
    enum FFLAS_ORDER {
        FflasRowMajor=101, /**< row major */
        FflasColMajor=102  /**< col major */
    };
    // public:
    /// Is matrix transposed ?
    enum FFLAS_TRANSPOSE {
        FflasNoTrans = 111, /**< Matrix is not transposed */
        FflasTrans   = 112  /**< Matrix is transposed */
    };
    /// Is triangular matrix's shape upper ?
    enum FFLAS_UPLO {
        FflasUpper = 121, /**< Triangular matrix is Upper triangular (if \f$i>j\f$ then \f$T_{i,j} = 0\f$)*/
        FflasLower = 122  /**< Triangular matrix is Lower triangular (if \f$i<j\f$ then \f$T_{i,j} = 0\f$)*/
    };

    /// Is the triangular matrix implicitly unit diagonal ?
    enum FFLAS_DIAG {
        FflasNonUnit = 131, /**< Triangular matrix has an explicit arbitrary diagonal */
        FflasUnit    = 132 /**< Triangular matrix has an implicit unit diagonal (\f$T_{i,i} = 1\f$)*/ /**< */
    };

    /// On what side ?
    enum FFLAS_SIDE {
        FflasLeft  = 141,/**< Operator applied on the left */
        FflasRight = 142 /**< Operator applied on the rigth*/
    };

    /** \p FFLAS_BASE  determines the type of the element representation for Matrix Mult kernel. (deprecated, should not be used) */
    enum FFLAS_BASE {
        FflasDouble  = 151,  /**<  to use the double precision BLAS */
        FflasFloat   = 152,  /**<  to use the single precison BLAS */
        FflasGeneric = 153   /**< for any other domain, that can not be converted to floating point integers */
    };
}

#include <algorithm>

namespace FFLAS{ namespace Protected {

    template <class X, class Y> class AreEqual {
    public:
        static const bool value = false;
    };

    template <class X> class AreEqual<X, X> {
    public:
        static const bool value = true;
    };
} // Protected
} // class FFLAS

namespace FFLAS {

    template <class T> const T &min3(const T &m, const T &n, const T &k) { return std::min(m, std::min(n, k)); }

    template <class T> const T &max3(const T &m, const T &n, const T &k) { return std::max(m, std::min(n, k)); }

    template <class T> const T &min4(const T &m, const T &n, const T &k, const T &l) {
        return std::min(std::min(m, n), std::min(k, l));
    }

    template <class T> const T &max4(const T &m, const T &n, const T &k, const T &l) {
        return std::max(std::max(m, n), std::max(k, l));
    }

} // FFLAS



#endif // __FFLASFFPACK_enum_INL
/* -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
// vim:sts=4:sw=4:ts=4:et:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s
back to top