mgcpp
A C++ Math Library Based on CUDA
dmat_dmat_mult.hpp
Go to the documentation of this file.
1 
2 // Copyright RedPortal, mujjingun 2017 - 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #ifndef _MGCPP_EXPRESSIONS_DMAT_DMAT_MULT_EXPR_HPP_
8 #define _MGCPP_EXPRESSIONS_DMAT_DMAT_MULT_EXPR_HPP_
9 
12 
13 namespace mgcpp {
14 
15 struct dmat_dmat_mult_expr_type;
16 
17 template <typename LhsExpr, typename RhsExpr>
18 using dmat_dmat_mult_expr = binary_expr<dmat_dmat_mult_expr_type,
19  dmat_expr,
20  typename LhsExpr::result_type,
21  LhsExpr,
22  RhsExpr>;
23 
28 template <typename LhsExpr, typename RhsExpr>
30  dmat_expr<LhsExpr> const& lhs,
31  dmat_expr<RhsExpr> const& rhs) noexcept;
32 
37 template <typename LhsExpr, typename RhsExpr>
39  dmat_expr<LhsExpr> const& lhs,
40  dmat_expr<RhsExpr> const& rhs) noexcept;
41 } // namespace mgcpp
42 
44 #endif
Definition: adapter_base.hpp:12
dmat_dmat_mult_expr< LhsExpr, RhsExpr > mult(dmat_expr< LhsExpr > const &lhs, dmat_expr< RhsExpr > const &rhs) noexcept
generic_expr< TagType, 0, ResultExprType, ResultType, 0, LhsExpr, RhsExpr > binary_expr
Definition: generic_expr.hpp:110
Definition: dmat_expr.hpp:19
Definition: forward.hpp:25
dmat_dmat_mult_expr< LhsExpr, RhsExpr > operator*(dmat_expr< LhsExpr > const &lhs, dmat_expr< RhsExpr > const &rhs) noexcept
binary_expr< dmat_dmat_mult_expr_type, dmat_expr, typename LhsExpr::result_type, LhsExpr, RhsExpr > dmat_dmat_mult_expr
Definition: dmat_dmat_mult.hpp:22