Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121898561
Kokkos_Atomic_View.hpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Jul 14, 17:10
Size
11 KB
Mime Type
text/x-c++
Expires
Wed, Jul 16, 17:10 (2 d)
Engine
blob
Format
Raw Data
Handle
27409937
Attached To
rLAMMPS lammps
Kokkos_Atomic_View.hpp
View Options
/*
//@HEADER
// ************************************************************************
//
// Kokkos v. 2.0
// Copyright (2014) Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact H. Carter Edwards (hcedwar@sandia.gov)
//
// ************************************************************************
//@HEADER
*/
#ifndef KOKKOS_ATOMIC_VIEW_HPP
#define KOKKOS_ATOMIC_VIEW_HPP
#include <Kokkos_Macros.hpp>
#include <Kokkos_Atomic.hpp>
namespace
Kokkos
{
namespace
Impl
{
//The following tag is used to prevent an implicit call of the constructor when trying
//to assign a literal 0 int ( = 0 );
struct
AtomicViewConstTag
{};
template
<
class
ViewTraits
>
class
AtomicDataElement
{
public
:
typedef
typename
ViewTraits
::
value_type
value_type
;
typedef
typename
ViewTraits
::
const_value_type
const_value_type
;
typedef
typename
ViewTraits
::
non_const_value_type
non_const_value_type
;
volatile
value_type
*
const
ptr
;
KOKKOS_INLINE_FUNCTION
AtomicDataElement
(
value_type
*
ptr_
,
AtomicViewConstTag
)
:
ptr
(
ptr_
){}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
=
(
const_value_type
&
val
)
const
{
*
ptr
=
val
;
return
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
=
(
volatile
const_value_type
&
val
)
const
{
*
ptr
=
val
;
return
val
;
}
KOKKOS_INLINE_FUNCTION
void
inc
()
const
{
Kokkos
::
atomic_increment
(
ptr
);
}
KOKKOS_INLINE_FUNCTION
void
dec
()
const
{
Kokkos
::
atomic_decrement
(
ptr
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
++
()
const
{
const_value_type
tmp
=
Kokkos
::
atomic_fetch_add
(
ptr
,
1
);
return
tmp
+
1
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
--
()
const
{
const_value_type
tmp
=
Kokkos
::
atomic_fetch_add
(
ptr
,
-
1
);
return
tmp
-
1
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
++
(
int
)
const
{
return
Kokkos
::
atomic_fetch_add
(
ptr
,
1
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
--
(
int
)
const
{
return
Kokkos
::
atomic_fetch_add
(
ptr
,
-
1
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
+=
(
const_value_type
&
val
)
const
{
const_value_type
tmp
=
Kokkos
::
atomic_fetch_add
(
ptr
,
val
);
return
tmp
+
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
+=
(
volatile
const_value_type
&
val
)
const
{
const_value_type
tmp
=
Kokkos
::
atomic_fetch_add
(
ptr
,
val
);
return
tmp
+
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
-=
(
const_value_type
&
val
)
const
{
const_value_type
tmp
=
Kokkos
::
atomic_fetch_add
(
ptr
,
-
val
);
return
tmp
-
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
-=
(
volatile
const_value_type
&
val
)
const
{
const_value_type
tmp
=
Kokkos
::
atomic_fetch_add
(
ptr
,
-
val
);
return
tmp
-
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
*=
(
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_mul_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
*=
(
volatile
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_mul_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
/=
(
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_div_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
/=
(
volatile
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_div_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
%=
(
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_mod_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
%=
(
volatile
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_mod_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
&=
(
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_and_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
&=
(
volatile
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_and_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
^=
(
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_xor_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
^=
(
volatile
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_xor_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
|=
(
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_or_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
|=
(
volatile
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_or_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
<<=
(
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_lshift_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
<<=
(
volatile
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_lshift_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
>>=
(
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_rshift_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
>>=
(
volatile
const_value_type
&
val
)
const
{
return
Kokkos
::
atomic_rshift_fetch
(
ptr
,
val
);
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
+
(
const_value_type
&
val
)
const
{
return
*
ptr
+
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
+
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
+
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
-
(
const_value_type
&
val
)
const
{
return
*
ptr
-
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
-
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
-
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
*
(
const_value_type
&
val
)
const
{
return
*
ptr
*
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
*
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
*
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
/
(
const_value_type
&
val
)
const
{
return
*
ptr
/
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
/
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
/
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
%
(
const_value_type
&
val
)
const
{
return
*
ptr
^
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
%
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
^
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
!
()
const
{
return
!*
ptr
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
&&
(
const_value_type
&
val
)
const
{
return
*
ptr
&&
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
&&
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
&&
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
||
(
const_value_type
&
val
)
const
{
return
*
ptr
|
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
||
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
|
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
&
(
const_value_type
&
val
)
const
{
return
*
ptr
&
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
&
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
&
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
|
(
const_value_type
&
val
)
const
{
return
*
ptr
|
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
|
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
|
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
^
(
const_value_type
&
val
)
const
{
return
*
ptr
^
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
^
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
^
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
~
()
const
{
return
~*
ptr
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
<<
(
const
unsigned
int
&
val
)
const
{
return
*
ptr
<<
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
<<
(
volatile
const
unsigned
int
&
val
)
const
{
return
*
ptr
<<
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
>>
(
const
unsigned
int
&
val
)
const
{
return
*
ptr
>>
val
;
}
KOKKOS_INLINE_FUNCTION
const_value_type
operator
>>
(
volatile
const
unsigned
int
&
val
)
const
{
return
*
ptr
>>
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
==
(
const_value_type
&
val
)
const
{
return
*
ptr
==
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
==
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
==
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
!=
(
const_value_type
&
val
)
const
{
return
*
ptr
!=
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
!=
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
!=
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
>=
(
const_value_type
&
val
)
const
{
return
*
ptr
>=
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
>=
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
>=
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
<=
(
const_value_type
&
val
)
const
{
return
*
ptr
<=
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
<=
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
<=
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
<
(
const_value_type
&
val
)
const
{
return
*
ptr
<
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
<
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
<
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
>
(
const_value_type
&
val
)
const
{
return
*
ptr
>
val
;
}
KOKKOS_INLINE_FUNCTION
bool
operator
>
(
volatile
const_value_type
&
val
)
const
{
return
*
ptr
>
val
;
}
KOKKOS_INLINE_FUNCTION
operator
const_value_type
()
const
{
//return Kokkos::atomic_load(ptr);
return
*
ptr
;
}
KOKKOS_INLINE_FUNCTION
operator
volatile
non_const_value_type
()
volatile
const
{
//return Kokkos::atomic_load(ptr);
return
*
ptr
;
}
};
template
<
class
ViewTraits
>
class
AtomicViewDataHandle
{
public
:
typename
ViewTraits
::
value_type
*
ptr
;
KOKKOS_INLINE_FUNCTION
AtomicViewDataHandle
()
:
ptr
(
NULL
)
{}
KOKKOS_INLINE_FUNCTION
AtomicViewDataHandle
(
typename
ViewTraits
::
value_type
*
ptr_
)
:
ptr
(
ptr_
)
{}
template
<
class
iType
>
KOKKOS_INLINE_FUNCTION
AtomicDataElement
<
ViewTraits
>
operator
[]
(
const
iType
&
i
)
const
{
return
AtomicDataElement
<
ViewTraits
>
(
ptr
+
i
,
AtomicViewConstTag
());
}
KOKKOS_INLINE_FUNCTION
operator
typename
ViewTraits
::
value_type
*
()
const
{
return
ptr
;
}
};
template
<
unsigned
Size
>
struct
Kokkos_Atomic_is_only_allowed_with_32bit_and_64bit_scalars
;
template
<>
struct
Kokkos_Atomic_is_only_allowed_with_32bit_and_64bit_scalars
<
4
>
{
typedef
int
type
;
};
template
<>
struct
Kokkos_Atomic_is_only_allowed_with_32bit_and_64bit_scalars
<
8
>
{
typedef
int64_t
type
;
};
}}
// namespace Kokkos::Impl
#endif
Event Timeline
Log In to Comment