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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_SIMT_H
|
|
|
|
|
2022-10-11 00:39:55 +02:00
|
|
|
#include "portable.h"
|
|
|
|
#include "assert.h"
|
2023-01-01 05:58:25 +01:00
|
|
|
#include "hwid2.h"
|
|
|
|
#include "hwid1.h"
|
2022-12-29 01:39:13 +01:00
|
|
|
#include "hwid.h"
|
2022-10-11 05:01:08 +02:00
|
|
|
#include "cycles.h"
|
2023-01-01 22:04:38 +01:00
|
|
|
#include "mem.h"
|
2022-11-23 02:22:38 +01:00
|
|
|
#include "math.h"
|
2022-12-28 03:13:36 +01:00
|
|
|
#include "hadd.h"
|
2021-04-02 21:51:59 +02:00
|
|
|
#include "broadcast.h"
|
2021-04-15 18:02:44 +02:00
|
|
|
#include "reduce_add.h"
|
|
|
|
#include "reduce_max.h"
|
2021-04-02 21:51:59 +02:00
|
|
|
#include "sort.h"
|
|
|
|
#include "mean.h"
|
|
|
|
#include "norm.h"
|
|
|
|
#include "rand.h"
|
2021-05-02 23:51:49 +02:00
|
|
|
#include "samax.h"
|