0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-03 17:28:18 +02:00
construct/include/ircd/simd/simd.h
Jason Volk 84564aee5f ircd::simd: Add a streaming transform boilerplate template for the common pattern.
ircd::simd: Add a streaming consumer boilerplate template for the common pattern.

ircd::json: Simplify w/ stream templates; update counter lane convention.
2020-09-09 04:47:27 -07:00

46 lines
999 B
C++

// 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
#include "type.h"
#include "type.unaligned.h"
#include "traits.h"
#include "lane_cast.h"
#include "broad_cast.h"
#include "split.h"
#include "lower.h"
#include "upper.h"
#include "shift.h"
#include "popcnt.h"
#include "lzcnt.h"
#include "tzcnt.h"
#include "lateral.h"
#include "stream.h"
#include "print.h"
namespace ircd
{
using simd::lane_cast;
using simd::shl;
using simd::shr;
using simd::lzcnt;
using simd::tzcnt;
using simd::popcnt;
using simd::popmask;
using simd::boolmask;
using simd::lateral;
}