File matrixmatrixmultiply.h
File List > algebra > matrix3x3algebra > matrixmatrixmultiply.h
Go to the documentation of this file
#ifndef COSMOINTERFACE_MATRIX3X3ALGEBRA_MATRIXMATRIXMULTIPLY_H
#define COSMOINTERFACE_MATRIX3X3ALGEBRA_MATRIXMATRIXMULTIPLY_H
/* This file is part of TempLat, available at https://cosmolattice.github.io/templat .
Copyright 2021-2026 The TempLat authors, see AUTHORS.md.
Released under the MIT license, see LICENSE.md. */
// File info: Main contributor(s): Jorge Baeza-Ballesteros, Year: 2026
#include "TempLat/lattice/algebra/matrix3x3algebra/matrixbinaryoperator.h"
#include "TempLat/lattice/algebra/matrix3x3algebra/helpers/matrixget.h"
#include "TempLat/lattice/algebra/operators/power.h"
#include "TempLat/lattice/algebra/operators/multiply.h"
#include "TempLat/lattice/algebra/operators/subtract.h"
namespace TempLat
{
template <class R, class T> class MatrixMatrixMultiplication : public MatrixBinaryOperator<R, T>
{
public:
// Put public methods here. These should change very little over time.
using MatrixBinaryOperator<R, T>::mR;
using MatrixBinaryOperator<R, T>::mT;
MatrixMatrixMultiplication(const R &pR, const T &pT) : MatrixBinaryOperator<R, T>(pR, pT) {}
auto MatrixGet(Tag<1> t1, Tag<1> t2) const
{
return getComponent(mR, 1_c, 1_c) * getComponent(mT, 1_c, 1_c) +
getComponent(mR, 1_c, 2_c) * getComponent(mT, 2_c, 1_c) +
getComponent(mR, 1_c, 3_c) * getComponent(mT, 3_c, 1_c);
}
auto MatrixGet(Tag<1> t1, Tag<2> t2) const
{
return getComponent(mR, 1_c, 1_c) * getComponent(mT, 1_c, 2_c) +
getComponent(mR, 1_c, 2_c) * getComponent(mT, 2_c, 2_c) +
getComponent(mR, 1_c, 3_c) * getComponent(mT, 3_c, 2_c);
}
auto MatrixGet(Tag<1> t1, Tag<3> t2) const
{
return getComponent(mR, 1_c, 1_c) * getComponent(mT, 1_c, 3_c) +
getComponent(mR, 1_c, 2_c) * getComponent(mT, 2_c, 3_c) +
getComponent(mR, 1_c, 3_c) * getComponent(mT, 3_c, 3_c);
}
auto MatrixGet(Tag<2> t1, Tag<1> t2) const
{
return getComponent(mR, 2_c, 1_c) * getComponent(mT, 1_c, 1_c) +
getComponent(mR, 2_c, 2_c) * getComponent(mT, 2_c, 1_c) +
getComponent(mR, 2_c, 3_c) * getComponent(mT, 3_c, 1_c);
}
auto MatrixGet(Tag<2> t1, Tag<2> t2) const
{
return getComponent(mR, 2_c, 1_c) * getComponent(mT, 1_c, 2_c) +
getComponent(mR, 2_c, 2_c) * getComponent(mT, 2_c, 2_c) +
getComponent(mR, 2_c, 3_c) * getComponent(mT, 3_c, 2_c);
}
auto MatrixGet(Tag<2> t1, Tag<3> t2) const
{
return getComponent(mR, 2_c, 1_c) * getComponent(mT, 1_c, 3_c) +
getComponent(mR, 2_c, 2_c) * getComponent(mT, 2_c, 3_c) +
getComponent(mR, 2_c, 3_c) * getComponent(mT, 3_c, 3_c);
}
auto MatrixGet(Tag<3> t1, Tag<1> t2) const
{
return getComponent(mR, 3_c, 1_c) * getComponent(mT, 1_c, 1_c) +
getComponent(mR, 3_c, 2_c) * getComponent(mT, 2_c, 1_c) +
getComponent(mR, 3_c, 3_c) * getComponent(mT, 3_c, 1_c);
}
auto MatrixGet(Tag<3> t1, Tag<2> t2) const
{
return getComponent(mR, 3_c, 1_c) * getComponent(mT, 1_c, 2_c) +
getComponent(mR, 3_c, 2_c) * getComponent(mT, 2_c, 2_c) +
getComponent(mR, 3_c, 3_c) * getComponent(mT, 3_c, 2_c);
}
auto MatrixGet(Tag<3> t1, Tag<3> t2) const
{
return getComponent(mR, 3_c, 1_c) * getComponent(mT, 1_c, 3_c) +
getComponent(mR, 3_c, 2_c) * getComponent(mT, 2_c, 3_c) +
getComponent(mR, 3_c, 3_c) * getComponent(mT, 3_c, 3_c);
}
template <typename... IDX>
requires requires(std::decay_t<R> r, std::decay_t<T> t, IDX... idx) {
requires IsVariadicIndex<IDX...>;
DoEval::eval(r, idx...);
DoEval::eval(t, idx...);
}
DEVICE_INLINE_FUNCTION auto eval(const IDX &...idx) const
{
auto cL = DoEval::eval(mR, idx...);
auto cR = DoEval::eval(mT, idx...);
device::array<decltype(cL[0] * cR[0]), 9> result;
// Row-major 3x3 product: result[3*row + col] = sum_k cL[3*row + k] * cR[3*k + col].
result[0] = cL[0] * cR[0] + cL[1] * cR[3] + cL[2] * cR[6];
result[1] = cL[0] * cR[1] + cL[1] * cR[4] + cL[2] * cR[7];
result[2] = cL[0] * cR[2] + cL[1] * cR[5] + cL[2] * cR[8];
result[3] = cL[3] * cR[0] + cL[4] * cR[3] + cL[5] * cR[6];
result[4] = cL[3] * cR[1] + cL[4] * cR[4] + cL[5] * cR[7];
result[5] = cL[3] * cR[2] + cL[4] * cR[5] + cL[5] * cR[8];
result[6] = cL[6] * cR[0] + cL[7] * cR[3] + cL[8] * cR[6];
result[7] = cL[6] * cR[1] + cL[7] * cR[4] + cL[8] * cR[7];
result[8] = cL[6] * cR[2] + cL[7] * cR[5] + cL[8] * cR[8];
return result;
}
virtual std::string operatorString() const override { return "*"; }
};
template <typename R, typename T>
requires(HasMatrixGet<R> && HasMatrixGet<T>)
auto operator*(const R &r, const T &t)
{
return MatrixMatrixMultiplication<R, T>(r, t);
}
} // namespace TempLat
#endif