NVBIO
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
simd.h
Go to the documentation of this file.
1 /*
2  * nvbio
3  * Copyright (c) 2011-2014, NVIDIA CORPORATION. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * * Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * * Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * * Neither the name of the NVIDIA CORPORATION nor the
13  * names of its contributors may be used to endorse or promote products
14  * derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #pragma once
29 
30 #include <nvbio/basic/types.h>
31 #ifdef __CUDACC__
33 #endif
34 #include <cmath>
35 #include <limits>
36 
37 namespace nvbio {
38 
42 struct simd4u8
43 {
44  struct base_rep_tag {};
45 
47  simd4u8() {}
48 
50  explicit simd4u8(const uint32 op, const base_rep_tag) { m = op; }
51 
53  explicit simd4u8(const uint4 v);
54 
56  explicit simd4u8(const uint8 v);
57 
59  simd4u8(const uint8 v1, const uint8 v2, const uint8 v3, const uint8 v4);
60 
62  simd4u8& operator= (const uint4 v);
63 
65  simd4u8& operator= (const uchar4 v);
66 
68 };
69 
71 bool any(const simd4u8 op) { return op.m != 0; }
72 
74 simd4u8 operator~(const simd4u8 op) { return simd4u8( ~op.m ); }
75 
77 simd4u8 operator== (const simd4u8 op1, const simd4u8 op2);
78 
80 simd4u8 operator!= (const simd4u8 op1, const simd4u8 op2);
81 
83 simd4u8 operator>= (const simd4u8 op1, const simd4u8 op2);
84 
86 simd4u8 operator> (const simd4u8 op1, const simd4u8 op2);
87 
89 simd4u8 operator<= (const simd4u8 op1, const simd4u8 op2);
90 
92 simd4u8 operator< (const simd4u8 op1, const simd4u8 op2);
93 
95 simd4u8 operator+ (const simd4u8 op1, const simd4u8 op2);
96 
98 simd4u8& operator+= (simd4u8& op1, const simd4u8 op2);
99 
101 simd4u8 operator- (const simd4u8 op1, const simd4u8 op2);
102 
104 simd4u8& operator-= (simd4u8& op1, const simd4u8 op2);
105 
107 simd4u8 max(const simd4u8 op1, const simd4u8 op2);
108 
110 simd4u8 min(const simd4u8 op1, const simd4u8 op2);
111 
113 simd4u8 and_op(const simd4u8 op1, const simd4u8 op2);
114 
116 simd4u8 or_op(const simd4u8 op1, const simd4u8 op2);
117 
119 simd4u8 ternary_op(const simd4u8 mask, const simd4u8 op1, const simd4u8 op2);
120 
121 template <uint32 I>
123 uint8 get(const simd4u8 op);
124 
125 } // namespace nvbio
126 
127 #include <nvbio/basic/simd_inl.h>