a2657b240b5f67d1355d8d51c4ba016b866021d9
[alexxy/gromacs.git] / src / gmxlib / cuda_tools / vectype_ops.cuh
1 /* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
2  *
3  *
4  *                This source code is part of
5  *
6  *                 G   R   O   M   A   C   S
7  *
8  *          GROningen MAchine for Chemical Simulations
9  *
10  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12  * Copyright (c) 2001-2012, The GROMACS development team,
13  * check out http://www.gromacs.org for more information.
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * If you want to redistribute modifications, please consider that
21  * scientific software is very special. Version control is crucial -
22  * bugs must be traceable. We will be happy to consider code for
23  * inclusion in the official distribution, but derived work must not
24  * be called official GROMACS. Details are found in the README & COPYING
25  * files - if they are missing, get the official version at www.gromacs.org.
26  *
27  * To help us fund GROMACS development, we humbly ask that you cite
28  * the papers on the package - you can find them in the top README file.
29  *
30  * For more info, check our website at http://www.gromacs.org
31  *
32  * And Hey:
33  * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
34  */
35
36 #ifndef VECTYPE_OPS_CUH
37 #define VECTYPE_OPS_CUH
38
39 /**** float3 ****/
40 inline __host__ __device__ float3 make_float3(float s)
41 {
42     return make_float3(s, s, s);
43 }
44 inline __host__ __device__ float3 make_float3(float4 a)
45 {
46     return make_float3(a.x, a.y, a.z);
47 }
48 inline __host__ __device__ float3 operator-(float3 &a)
49 {
50     return make_float3(-a.x, -a.y, -a.z);
51 }
52 inline __host__ __device__ float3 operator+(float3 a, float3 b)
53 {
54     return make_float3(a.x + b.x, a.y + b.y, a.z + b.z);
55 }
56 inline __host__ __device__ float3 operator-(float3 a, float3 b)
57 {
58     return make_float3(a.x - b.x, a.y - b.y, a.z - b.z);
59 }
60 inline __host__ __device__ float3 operator*(float3 a, float k)
61 {
62     return make_float3(k * a.x, k * a.y, k * a.z);
63 }
64 inline __host__ __device__ float3 operator*(float k, float3 a)
65 {
66     return make_float3(k * a.x, k * a.y, k * a.z);
67 }
68 inline __host__ __device__ void operator+=(float3 &a, float3 b)
69 {
70     a.x += b.x; a.y += b.y; a.z += b.z;
71 }
72 inline __host__ __device__ void operator+=(float3 &a, float4 b)
73 {
74     a.x += b.x; a.y += b.y; a.z += b.z;
75 }
76 inline __host__ __device__ void operator-=(float3 &a, float3 b)
77 {
78     a.x -= b.x; a.y -= b.y; a.z -= b.z;
79 }
80 inline __host__ __device__ float norm(float3 a)
81 {
82     return sqrt(a.x * a.x + a.y * a.y + a.z * a.z);
83 }
84 inline __host__ __device__ float norm2(float3 a)
85 {
86     return (a.x * a.x + a.y * a.y + a.z * a.z);
87 }
88 inline __host__ __device__ float dist3(float3 a, float3 b)
89 {
90     return norm(b - a);
91 }
92 inline __host__ __device__ float3 operator*(float3 a, float3 b)
93 {
94     return make_float3(a.x * b.x, a.y * b.y, a.z * b.z);
95 }
96 inline __host__ __device__ void operator*=(float3 &a, float3 b)
97 {
98     a.x *= b.x; a.y *= b.y; a.z *= b.z;
99 }
100 inline __device__ void atomicAdd(float3 *addr, float3 val)
101 {
102     atomicAdd(&addr->x, val.x);
103     atomicAdd(&addr->y, val.y);
104     atomicAdd(&addr->z, val.z);
105 }
106 /****************************************************************/
107
108 /**** float4 ****/
109 inline __host__ __device__ float4 make_float4(float s)
110 {
111     return make_float4(s, s, s, s);
112 }
113 inline __host__ __device__ float4 make_float4(float3 a)
114 {
115     return make_float4(a.x, a.y, a.z, 0.0f);
116 }
117 inline __host__ __device__ float4 operator+(float4 a, float4 b)
118 {
119     return make_float4(a.x + b.x, a.y + b.y, a.z + b.z, a.w + b.w);
120 }
121 inline __host__ __device__ float4 operator+(float4 a, float3 b)
122 {
123     return make_float4(a.x + b.x, a.y + b.y, a.z + b.z, a.w);
124 }
125 inline __host__ __device__ float4 operator-(float4 a, float4 b)
126 {
127     return make_float4(a.x - b.x, a.y - b.y, a.z - b.z, a.w - b.w);
128 }
129 inline __host__ __device__ float4 operator*(float4 a, float k)
130 {
131     return make_float4(k * a.x, k * a.y, k * a.z, k * a.w);
132 }
133 inline __host__ __device__ void operator+=(float4 &a, float4 b)
134 {
135     a.x += b.x; a.y += b.y; a.z += b.z; a.w += b.w;
136 }
137 inline __host__ __device__ void operator+=(float4 &a, float3 b)
138 {
139     a.x += b.x; a.y += b.y; a.z += b.z;
140 }
141 inline __host__ __device__ void operator-=(float4 &a, float3 b)
142 {
143     a.x -= b.x; a.y -= b.y; a.z -= b.z;
144 }
145
146 inline __host__ __device__ float norm(float4 a)
147 {
148     return sqrt(a.x * a.x + a.y * a.y + a.z * a.z + a.w * a.w);
149 }
150
151 inline __host__ __device__ float dist3(float4 a, float4 b)
152 {
153     return norm(b - a);
154 }
155
156 #endif /* VECTYPE_OPS_CUH */