2020-06-27 23:25:56 +02:00
|
|
|
// The Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) The Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2020 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_SIMD_H
|
|
|
|
|
2020-10-10 14:09:45 +02:00
|
|
|
#include "support.h"
|
2020-06-27 23:25:56 +02:00
|
|
|
#include "type.h"
|
2020-10-07 02:42:06 +02:00
|
|
|
#include "unaligned.h"
|
2020-06-27 23:25:56 +02:00
|
|
|
#include "traits.h"
|
2020-10-09 15:22:12 +02:00
|
|
|
#include "cast.h"
|
2020-06-29 01:37:00 +02:00
|
|
|
#include "lane_cast.h"
|
2020-07-16 02:25:32 +02:00
|
|
|
#include "broad_cast.h"
|
2020-09-04 08:43:10 +02:00
|
|
|
#include "split.h"
|
|
|
|
#include "lower.h"
|
|
|
|
#include "upper.h"
|
2020-09-19 02:53:59 +02:00
|
|
|
#include "gather.h"
|
2020-09-20 15:25:29 +02:00
|
|
|
#include "scatter.h"
|
2020-09-20 07:48:54 +02:00
|
|
|
#include "shl.h"
|
|
|
|
#include "shr.h"
|
2020-09-20 08:39:06 +02:00
|
|
|
#include "rol.h"
|
|
|
|
#include "ror.h"
|
2020-07-18 01:41:22 +02:00
|
|
|
#include "popcnt.h"
|
|
|
|
#include "lzcnt.h"
|
|
|
|
#include "tzcnt.h"
|
2020-10-11 18:53:38 +02:00
|
|
|
#include "reduce.h"
|
2020-09-28 08:31:05 +02:00
|
|
|
#include "any.h"
|
2020-09-28 09:02:45 +02:00
|
|
|
#include "all.h"
|
2020-10-10 10:18:37 +02:00
|
|
|
#include "stream.h"
|
2020-10-10 09:07:06 +02:00
|
|
|
#include "for_each.h"
|
|
|
|
#include "transform.h"
|
|
|
|
#include "generate.h"
|
2020-10-07 02:50:43 +02:00
|
|
|
#include "accumulate.h"
|
2020-06-27 23:25:56 +02:00
|
|
|
#include "print.h"
|
|
|
|
|
|
|
|
namespace ircd
|
|
|
|
{
|
2020-07-06 15:51:01 +02:00
|
|
|
using simd::lane_cast;
|
2020-06-27 23:25:56 +02:00
|
|
|
using simd::shl;
|
|
|
|
using simd::shr;
|
2020-09-20 08:39:06 +02:00
|
|
|
using simd::rol;
|
|
|
|
using simd::ror;
|
2020-07-18 01:41:22 +02:00
|
|
|
using simd::lzcnt;
|
|
|
|
using simd::tzcnt;
|
|
|
|
using simd::popcnt;
|
2020-06-30 06:05:09 +02:00
|
|
|
}
|