2021-02-17 09:51:10 -08: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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_MATH_MATH_H
|
|
|
|
|
|
|
|
#include "log2.h"
|
2021-02-17 10:15:21 -08:00
|
|
|
#include "inv.h"
|
2021-03-02 09:58:24 -08:00
|
|
|
#include "mean.h"
|
2021-03-14 19:45:41 -07:00
|
|
|
#include "tanh.h"
|
2021-03-16 09:58:59 -07:00
|
|
|
#include "pow.h"
|
2021-03-16 13:36:29 -07:00
|
|
|
#include "exp.h"
|
2021-03-15 15:11:44 -07:00
|
|
|
#include "fmma.h"
|
2021-03-16 12:40:57 -07:00
|
|
|
#include "norm.h"
|
2021-03-16 14:45:45 -07:00
|
|
|
#include "smax.h"
|
2021-04-17 12:42:57 -07:00
|
|
|
#include "sqrt.h"
|