Sacado Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Fad_KokkosTests_Cuda.cpp
Go to the documentation of this file.
1 // @HEADER
2 // ***********************************************************************
3 //
4 // Sacado Package
5 // Copyright (2006) Sandia Corporation
6 //
7 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
8 // the U.S. Government retains certain rights in this software.
9 //
10 // This library is free software; you can redistribute it and/or modify
11 // it under the terms of the GNU Lesser General Public License as
12 // published by the Free Software Foundation; either version 2.1 of the
13 // License, or (at your option) any later version.
14 //
15 // This library is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 // Lesser General Public License for more details.
19 //
20 // You should have received a copy of the GNU Lesser General Public
21 // License along with this library; if not, write to the Free Software
22 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
23 // USA
24 // Questions? Contact David M. Gay (dmgay@sandia.gov) or Eric T. Phipps
25 // (etphipp@sandia.gov).
26 //
27 // ***********************************************************************
28 // @HEADER
32 
33 #include "Kokkos_Macros.hpp"
34 
35 #define SACADO_TEST_DFAD 1
36 #include "Fad_KokkosTests.hpp"
37 
38 // Instantiate tests for Cuda device. We can only test DFad is UVM is enabled.
39 using Kokkos::Cuda;
40 VIEW_FAD_TESTS_D( Cuda )
41 
42 // Tests special size alignment for SFad on Cuda is correct
43 TEUCHOS_UNIT_TEST(Kokkos_View_Fad, SFadCudaAligned)
44 {
45  const int StaticDim = 64;
46  const int Stride = 32;
47  const int LocalDim = 2;
50  typedef Kokkos::Cuda Device;
51  typedef Kokkos::View<FadType*,Layout,Device> ViewType;
52 
53  typedef typename ViewType::traits TraitsType;
54  typedef Kokkos::Impl::ViewMapping< TraitsType , typename TraitsType::specialize > MappingType;
55  const int view_static_dim = MappingType::FadStaticDimension;
56  TEUCHOS_TEST_EQUALITY(view_static_dim, StaticDim, out, success);
57 
58  typedef typename Kokkos::ThreadLocalScalarType<ViewType>::type local_fad_type;
59  const bool issfd = is_sfad<local_fad_type>::value;
60  const int static_dim = Sacado::StaticSize<local_fad_type>::value;
61  TEUCHOS_TEST_EQUALITY(issfd, true, out, success);
62  TEUCHOS_TEST_EQUALITY(static_dim, LocalDim, out, success);
63 
64  const size_t num_rows = 11;
65  const size_t fad_size = StaticDim;
66 
67  ViewType v("v", num_rows, fad_size+1);
68  const size_t span = v.span();
69  TEUCHOS_TEST_EQUALITY(span, num_rows*(StaticDim+1), out, success);
70 }
71 
72 TEUCHOS_UNIT_TEST(Kokkos_View_Fad, SFadCudaNotAligned)
73 {
74  const int StaticDim = 50;
75  const int Stride = 32;
76  const int LocalDim = 0;
79  typedef Kokkos::Cuda Device;
80  typedef Kokkos::View<FadType*,Layout,Device> ViewType;
81 
82  typedef typename ViewType::traits TraitsType;
83  typedef Kokkos::Impl::ViewMapping< TraitsType , typename TraitsType::specialize > MappingType;
84  const int view_static_dim = MappingType::FadStaticDimension;
85  TEUCHOS_TEST_EQUALITY(view_static_dim, StaticDim, out, success);
86 
87  typedef typename Kokkos::ThreadLocalScalarType<ViewType>::type local_fad_type;
88  const bool issfd = is_sfad<local_fad_type>::value;
89  const int static_dim = Sacado::StaticSize<local_fad_type>::value;
90  TEUCHOS_TEST_EQUALITY(issfd, false, out, success);
91  TEUCHOS_TEST_EQUALITY(static_dim, LocalDim, out, success);
92 
93  const size_t num_rows = 11;
94  const size_t fad_size = StaticDim;
95 
96  ViewType v("v", num_rows, fad_size+1);
97  const size_t span = v.span();
98  TEUCHOS_TEST_EQUALITY(span, num_rows*(StaticDim+1), out, success);
99 }
100 
101 int main( int argc, char* argv[] ) {
102  Teuchos::GlobalMPISession mpiSession(&argc, &argv);
103 
104  // Initialize Cuda
105  Kokkos::InitializationSettings init_args;
106  init_args.set_device_id(0);
107  Kokkos::initialize( init_args );
108  Kokkos::print_configuration(std::cout);
109 
111 
112  // Finalize Cuda
113  Kokkos::finalize();
114 
115  return res;
116 }
Sacado::Fad::DFad< double > FadType
Base template specification for static size.
TEUCHOS_UNIT_TEST(Conversion, IsConvertible)
static int runUnitTestsFromMain(int argc, char *argv[])
int main()
Definition: ad_example.cpp:191
#define TEUCHOS_TEST_EQUALITY(v1, v2, out, success)
#define VIEW_FAD_TESTS_D(D)