0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-07 01:06:37 +02:00
construct/include/ircd/simt/mean.h

30 lines
997 B
C
Raw Normal View History

2021-04-02 21:51:59 +02:00
// 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.
/// Compute average of all elements in the input. The result is broadcast
/// to all elements of the output.
inline void
ircd_simt_math_mean_f4lldr(__local float4 *const restrict out,
__local const float4 *const restrict in,
const uint num,
const uint i)
{
out[i] = in[i];
ircd_simt_reduce_add_f4lldr(out, num, i);
if(i == 0)
out[i][0] = ircd_simt_reduce_add_f4(out[i]);
2021-04-02 21:51:59 +02:00
if(i == 0)
out[i] = out[i][0] / (num * 4);
2021-04-02 21:51:59 +02:00
ircd_simt_broadcast_f4lldr(out, num, i);
2021-04-02 21:51:59 +02:00
}