mirror of
https://github.com/matrix-construct/construct
synced 2024-11-05 21:38:54 +01:00
82 lines
1.8 KiB
C++
82 lines
1.8 KiB
C++
// Matrix Construct
|
|
//
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
// Copyright (C) 2016-2021 Jason Volk <jason@zemos.net>
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
// full license for this software is available in the LICENSE file.
|
|
|
|
#pragma once
|
|
#define HAVE_IRCD_MATH_FMMA_H
|
|
|
|
namespace ircd::math
|
|
{
|
|
template<const struct fmma_opts &opts,
|
|
class T>
|
|
void fmma(T *, const T *, const T *, size_t = 0, size_t = 0);
|
|
}
|
|
|
|
/// Options for the template.
|
|
struct ircd::math::fmma_opts
|
|
{
|
|
size_t cols { 0 };
|
|
size_t rows { 0 };
|
|
size_t tiles { 1 };
|
|
char polarity { 'x' };
|
|
};
|
|
|
|
/// Fused Matrix-Multiply & Accumulate
|
|
/// clang11 FMA vfmadd213ps/vfmadd231ps
|
|
/// clang11 FMA4 vfmaddps
|
|
template<const ircd::math::fmma_opts &opts,
|
|
class T>
|
|
inline void
|
|
ircd::math::fmma(T *const __restrict__ out,
|
|
const T *const __restrict__ in,
|
|
const T *const __restrict__ weight,
|
|
size_t cols,
|
|
size_t rows)
|
|
{
|
|
static const auto
|
|
&tiles{opts.tiles},
|
|
&lanes{simd::lanes<T>()};
|
|
|
|
cols = cols?: opts.cols;
|
|
rows = rows?: opts.rows;
|
|
std::swap(rows, opts.polarity == 'y'? cols: rows);
|
|
|
|
const auto width
|
|
{
|
|
cols / lanes / tiles
|
|
};
|
|
|
|
const auto height
|
|
{
|
|
rows / lanes
|
|
};
|
|
|
|
for(uint i(0); i < width; i++)
|
|
for(uint j(0); j < height; j++)
|
|
for(uint t(0); t < tiles; ++t)
|
|
for(uint l(0); l < lanes; ++l)
|
|
{
|
|
const auto x
|
|
{
|
|
i * tiles + t
|
|
};
|
|
|
|
const auto y
|
|
{
|
|
x * lanes + l
|
|
};
|
|
|
|
const T mul
|
|
{
|
|
in[x][l] * weight[y * height + j]
|
|
};
|
|
|
|
out[j] += mul;
|
|
}
|
|
}
|