T-SIMD v31.1.0
A C++ template SIMD library
Loading...
Searching...
No Matches
experimental.H
1// ===========================================================================
2//
3// place to put experimental code
4//
5// This source code file is part of the following software:
6//
7// - the low-level C++ template SIMD library
8// - the SIMD implementation of the MinWarping and the 2D-Warping methods
9// for local visual homing.
10//
11// The software is provided based on the accompanying license agreement in the
12// file LICENSE.md.
13// The software is provided "as is" without any warranty by the licensor and
14// without any liability of the licensor, and the software may not be
15// distributed by the licensee; see the license agreement for details.
16//
17// (C) Ralf Möller
18// Computer Engineering
19// Faculty of Technology
20// Bielefeld University
21// www.ti.uni-bielefeld.de
22//
23// ===========================================================================
24
25// NOTE: This file contains experimental code which hasn't been tested
26// NOTE: at all or hasn't been tested in depth.
27
28#pragma once
29#ifndef SIMD_EXPERIMENTAL_H_
30#define SIMD_EXPERIMENTAL_H_
31
32#include "base.H"
33#include "defs.H"
34#include "vec.H"
35
36#include <cstddef>
37
38namespace simd {
39namespace experimental {
40
41// put experimental code here
42
43} // namespace experimental
44} // namespace simd
45
46#endif
Namespace for T-SIMD.
Definition time_measurement.H:161