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.
|
|
|
|
|
2021-05-02 23:43:10 +02:00
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_SIMT_NORM_H
|
|
|
|
|
|
|
|
#ifdef __OPENCL_C_VERSION__
|
2021-04-02 21:51:59 +02:00
|
|
|
/// Normalize the input, placing the result in possibly overlapping output.
|
|
|
|
/// This procedure requires an additional temporary buffer.
|
|
|
|
inline void
|
|
|
|
ircd_simt_math_norm_f4lldr(__local float4 *const out,
|
|
|
|
__local const float4 *const in,
|
2021-04-15 19:07:17 +02:00
|
|
|
__local float4 *const restrict tmp)
|
2021-04-02 21:51:59 +02:00
|
|
|
{
|
2021-04-15 19:07:17 +02:00
|
|
|
const uint
|
|
|
|
li = get_local_id(0),
|
|
|
|
ln = get_local_size(0);
|
|
|
|
|
|
|
|
ircd_simt_math_mean_f4lldr(tmp, in);
|
2021-04-02 21:51:59 +02:00
|
|
|
|
|
|
|
const float4
|
2021-04-15 19:07:17 +02:00
|
|
|
sub_mean = in[li] - tmp[li];
|
2021-04-02 21:51:59 +02:00
|
|
|
|
2021-04-15 19:07:17 +02:00
|
|
|
tmp[li] = pow(sub_mean, 2);
|
|
|
|
ircd_simt_math_mean_f4lldr(out, tmp);
|
2021-04-02 21:51:59 +02:00
|
|
|
|
|
|
|
const float4
|
|
|
|
epsilon = 0.00001f,
|
2021-04-15 19:07:17 +02:00
|
|
|
s = sqrt(out[li] + epsilon);
|
2021-04-02 21:51:59 +02:00
|
|
|
|
2021-04-15 19:07:17 +02:00
|
|
|
out[li] = sub_mean / s;
|
2021-04-02 21:51:59 +02:00
|
|
|
}
|
2021-05-02 23:43:10 +02:00
|
|
|
#endif
|