Intrepid2
Intrepid2_HGRAD_LINE_Cn_FEMDef.hpp
Go to the documentation of this file.
1 // @HEADER
2 // ************************************************************************
3 //
4 // Intrepid2 Package
5 // Copyright (2007) Sandia Corporation
6 //
7 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
8 // license for use of this work by or on behalf of the U.S. Government.
9 //
10 // Redistribution and use in source and binary forms, with or without
11 // modification, are permitted provided that the following conditions are
12 // met:
13 //
14 // 1. Redistributions of source code must retain the above copyright
15 // notice, this list of conditions and the following disclaimer.
16 //
17 // 2. Redistributions in binary form must reproduce the above copyright
18 // notice, this list of conditions and the following disclaimer in the
19 // documentation and/or other materials provided with the distribution.
20 //
21 // 3. Neither the name of the Corporation nor the names of the
22 // contributors may be used to endorse or promote products derived from
23 // this software without specific prior written permission.
24 //
25 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
26 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
29 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 //
37 // Questions? Contact Kyungjoo Kim (kyukim@sandia.gov), or
38 // Mauro Perego (mperego@sandia.gov)
39 //
40 // ************************************************************************
41 // @HEADER
42 
49 #ifndef __INTREPID2_HGRAD_LINE_CN_FEM_DEF_HPP__
50 #define __INTREPID2_HGRAD_LINE_CN_FEM_DEF_HPP__
51 
52 namespace Intrepid2 {
53 
54  // -------------------------------------------------------------------------------------
55  namespace Impl {
56 
57  template<EOperator opType>
58  template<typename OutputViewType,
59  typename inputViewType,
60  typename workViewType,
61  typename vinvViewType>
62  KOKKOS_INLINE_FUNCTION
63  void
64  Basis_HGRAD_LINE_Cn_FEM::Serial<opType>::
65  getValues( OutputViewType output,
66  const inputViewType input,
67  workViewType work,
68  const vinvViewType vinv,
69  const ordinal_type operatorDn ) {
70  ordinal_type opDn = operatorDn;
71 
72  const ordinal_type card = vinv.extent(0);
73  const ordinal_type npts = input.extent(0);
74 
75  const ordinal_type order = card - 1;
76  const double alpha = 0.0, beta = 0.0;
77 
78  typedef typename Kokkos::DynRankView<typename workViewType::value_type, typename workViewType::memory_space> viewType;
79  auto vcprop = Kokkos::common_view_alloc_prop(work);
80 
81  switch (opType) {
82  case OPERATOR_VALUE: {
83  viewType phis(Kokkos::view_wrap(work.data(), vcprop), card, npts);
84 
85  Impl::Basis_HGRAD_LINE_Cn_FEM_JACOBI::
86  Serial<opType>::getValues(phis, input, order, alpha, beta);
87 
88  for (ordinal_type i=0;i<card;++i)
89  for (ordinal_type j=0;j<npts;++j) {
90  output.access(i,j) = 0.0;
91  for (ordinal_type k=0;k<card;++k)
92  output.access(i,j) += vinv(k,i)*phis.access(k,j);
93  }
94  break;
95  }
96  case OPERATOR_GRAD:
97  case OPERATOR_D1:
98  case OPERATOR_D2:
99  case OPERATOR_D3:
100  case OPERATOR_D4:
101  case OPERATOR_D5:
102  case OPERATOR_D6:
103  case OPERATOR_D7:
104  case OPERATOR_D8:
105  case OPERATOR_D9:
106  case OPERATOR_D10:
107  opDn = getOperatorOrder(opType);
108  case OPERATOR_Dn: {
109  // dkcard is always 1 for 1D element
110  const ordinal_type dkcard = 1;
111  viewType phis(Kokkos::view_wrap(work.data(), vcprop), card, npts, dkcard);
112  Impl::Basis_HGRAD_LINE_Cn_FEM_JACOBI::
113  Serial<opType>::getValues(phis, input, order, alpha, beta, opDn);
114 
115  for (ordinal_type i=0;i<card;++i)
116  for (ordinal_type j=0;j<npts;++j)
117  for (ordinal_type k=0;k<dkcard;++k) {
118  output.access(i,j,k) = 0.0;
119  for (ordinal_type l=0;l<card;++l)
120  output.access(i,j,k) += vinv(l,i)*phis.access(l,j,k);
121  }
122  break;
123  }
124  default: {
125  INTREPID2_TEST_FOR_ABORT( true,
126  ">>> ERROR: (Intrepid2::Basis_HGRAD_LINE_Cn_FEM::Serial::getValues) operator is not supported." );
127  }
128  }
129  }
130 
131 
132  template<typename SpT, ordinal_type numPtsPerEval,
133  typename outputValueValueType, class ...outputValueProperties,
134  typename inputPointValueType, class ...inputPointProperties,
135  typename vinvValueType, class ...vinvProperties>
136  void
137  Basis_HGRAD_LINE_Cn_FEM::
138  getValues( Kokkos::DynRankView<outputValueValueType,outputValueProperties...> outputValues,
139  const Kokkos::DynRankView<inputPointValueType, inputPointProperties...> inputPoints,
140  const Kokkos::DynRankView<vinvValueType, vinvProperties...> vinv,
141  const EOperator operatorType ) {
142  typedef Kokkos::DynRankView<outputValueValueType,outputValueProperties...> outputValueViewType;
143  typedef Kokkos::DynRankView<inputPointValueType, inputPointProperties...> inputPointViewType;
144  typedef Kokkos::DynRankView<vinvValueType, vinvProperties...> vinvViewType;
145  typedef typename ExecSpace<typename inputPointViewType::execution_space,SpT>::ExecSpaceType ExecSpaceType;
146 
147  // loopSize corresponds to cardinality
148  const auto loopSizeTmp1 = (inputPoints.extent(0)/numPtsPerEval);
149  const auto loopSizeTmp2 = (inputPoints.extent(0)%numPtsPerEval != 0);
150  const auto loopSize = loopSizeTmp1 + loopSizeTmp2;
151  Kokkos::RangePolicy<ExecSpaceType,Kokkos::Schedule<Kokkos::Static> > policy(0, loopSize);
152 
153  typedef typename inputPointViewType::value_type inputPointType;
154 
155  const ordinal_type cardinality = outputValues.extent(0);
156 
157  auto vcprop = Kokkos::common_view_alloc_prop(inputPoints);
158  typedef typename Kokkos::DynRankView< inputPointType, typename inputPointViewType::memory_space> workViewType;
159  workViewType work(Kokkos::view_alloc("Basis_HGRAD_LINE_Cn_FEM::getValues::work", vcprop), cardinality, inputPoints.extent(0));
160 
161  switch (operatorType) {
162  case OPERATOR_VALUE: {
163  typedef Functor<outputValueViewType,inputPointViewType,vinvViewType,workViewType,
164  OPERATOR_VALUE,numPtsPerEval> FunctorType;
165  Kokkos::parallel_for( policy, FunctorType(outputValues, inputPoints, vinv, work) );
166  break;
167  }
168  case OPERATOR_GRAD:
169  case OPERATOR_D1:
170  case OPERATOR_D2:
171  case OPERATOR_D3:
172  case OPERATOR_D4:
173  case OPERATOR_D5:
174  case OPERATOR_D6:
175  case OPERATOR_D7:
176  case OPERATOR_D8:
177  case OPERATOR_D9:
178  case OPERATOR_D10: {
179  typedef Functor<outputValueViewType,inputPointViewType,vinvViewType,workViewType,
180  OPERATOR_Dn,numPtsPerEval> FunctorType;
181  Kokkos::parallel_for( policy, FunctorType(outputValues, inputPoints, vinv, work,
182  getOperatorOrder(operatorType)) );
183  break;
184  }
185  default: {
186  INTREPID2_TEST_FOR_EXCEPTION( true , std::invalid_argument,
187  ">>> ERROR (Basis_HGRAD_LINE_Cn_FEM): Operator type not implemented" );
188  //break; commented out because this always throws
189  }
190  }
191  }
192  }
193 
194  // -------------------------------------------------------------------------------------
195  template<typename SpT, typename OT, typename PT>
197  Basis_HGRAD_LINE_Cn_FEM( const ordinal_type order,
198  const EPointType pointType ) {
199  this->basisCardinality_ = order+1;
200  this->basisDegree_ = order;
201  this->basisCellTopology_ = shards::CellTopology(shards::getCellTopologyData<shards::Line<2> >() );
202  this->basisType_ = BASIS_FEM_FIAT;
203  this->basisCoordinates_ = COORDINATES_CARTESIAN;
204  this->functionSpace_ = FUNCTION_SPACE_HGRAD;
205 
206  const ordinal_type card = this->basisCardinality_;
207 
208  // points are computed in the host and will be copied
209  Kokkos::DynRankView<typename ScalarViewType::value_type,typename SpT::array_layout,Kokkos::HostSpace>
210  dofCoords("Hgrad::Line::Cn::dofCoords", card, 1);
211 
212 
213  switch (pointType) {
214  case POINTTYPE_EQUISPACED:
215  case POINTTYPE_WARPBLEND: {
216  // lattice ordering
217  {
218  const ordinal_type offset = 0;
219  PointTools::getLattice( dofCoords,
220  this->basisCellTopology_,
221  order, offset,
222  pointType );
223 
224  }
225  // topological order
226  // {
227  // // two vertices
228  // dofCoords(0,0) = -1.0;
229  // dofCoords(1,0) = 1.0;
230 
231  // // internal points
232  // typedef Kokkos::pair<ordinal_type,ordinal_type> range_type;
233  // auto pts = Kokkos::subview(dofCoords, range_type(2, card), Kokkos::ALL());
234 
235  // const auto offset = 1;
236  // PointTools::getLattice( pts,
237  // this->basisCellTopology_,
238  // order, offset,
239  // pointType );
240  // }
241  break;
242  }
243  case POINTTYPE_GAUSS: {
244  // internal points only
245  PointTools::getGaussPoints( dofCoords,
246  order );
247  break;
248  }
249  default: {
250  INTREPID2_TEST_FOR_EXCEPTION( !isValidPointType(pointType),
251  std::invalid_argument ,
252  ">>> ERROR: (Intrepid2::Basis_HGRAD_LINE_Cn_FEM) invalid pointType." );
253  }
254  }
255 
256  this->dofCoords_ = Kokkos::create_mirror_view(typename SpT::memory_space(), dofCoords);
257  Kokkos::deep_copy(this->dofCoords_, dofCoords);
258 
259  // form Vandermonde matrix; actually, this is the transpose of the VDM,
260  // this matrix is used in LAPACK so it should be column major and left layout
261  const ordinal_type lwork = card*card;
262  Kokkos::DynRankView<typename ScalarViewType::value_type,Kokkos::LayoutLeft,Kokkos::HostSpace>
263  vmat("Hgrad::Line::Cn::vmat", card, card),
264  work("Hgrad::Line::Cn::work", lwork),
265  ipiv("Hgrad::Line::Cn::ipiv", card);
266 
267  const double alpha = 0.0, beta = 0.0;
268  Impl::Basis_HGRAD_LINE_Cn_FEM_JACOBI::
269  getValues<Kokkos::HostSpace::execution_space,Parameters::MaxNumPtsPerBasisEval>
270  (vmat, dofCoords, order, alpha, beta, OPERATOR_VALUE);
271 
272  ordinal_type info = 0;
273  Teuchos::LAPACK<ordinal_type,typename ScalarViewType::value_type> lapack;
274 
275  lapack.GETRF(card, card,
276  vmat.data(), vmat.stride_1(),
277  (ordinal_type*)ipiv.data(),
278  &info);
279 
280  INTREPID2_TEST_FOR_EXCEPTION( info != 0,
281  std::runtime_error ,
282  ">>> ERROR: (Intrepid2::Basis_HGRAD_LINE_Cn_FEM) lapack.GETRF returns nonzero info." );
283 
284  lapack.GETRI(card,
285  vmat.data(), vmat.stride_1(),
286  (ordinal_type*)ipiv.data(),
287  work.data(), lwork,
288  &info);
289 
290  INTREPID2_TEST_FOR_EXCEPTION( info != 0,
291  std::runtime_error ,
292  ">>> ERROR: (Intrepid2::Basis_HGRAD_LINE_Cn_FEM) lapack.GETRI returns nonzero info." );
293 
294  // create host mirror
295  Kokkos::DynRankView<typename ScalarViewType::value_type,typename SpT::array_layout,Kokkos::HostSpace>
296  vinv("Hgrad::Line::Cn::vinv", card, card);
297 
298  for (ordinal_type i=0;i<card;++i)
299  for (ordinal_type j=0;j<card;++j)
300  vinv(i,j) = vmat(j,i);
301 
302  this->vinv_ = Kokkos::create_mirror_view(typename SpT::memory_space(), vinv);
303  Kokkos::deep_copy(this->vinv_ , vinv);
304 
305  // initialize tags
306  {
307  const bool is_vertex_included = (pointType != POINTTYPE_GAUSS);
308 
309  // Basis-dependent initializations
310  const ordinal_type tagSize = 4; // size of DoF tag, i.e., number of fields in the tag
311  const ordinal_type posScDim = 0; // position in the tag, counting from 0, of the subcell dim
312  const ordinal_type posScOrd = 1; // position in the tag, counting from 0, of the subcell ordinal
313  const ordinal_type posDfOrd = 2; // position in the tag, counting from 0, of DoF ordinal relative to the subcell
314 
315 
316  ordinal_type tags[Parameters::MaxOrder+1][4];
317 
318  // now we check the points for association
319  if (is_vertex_included) {
320  // lattice order
321  {
322  const auto v0 = 0;
323  tags[v0][0] = 0; // vertex dof
324  tags[v0][1] = 0; // vertex id
325  tags[v0][2] = 0; // local dof id
326  tags[v0][3] = 1; // total number of dofs in this vertex
327 
328  const ordinal_type iend = card - 2;
329  for (ordinal_type i=0;i<iend;++i) {
330  const auto e = i + 1;
331  tags[e][0] = 1; // edge dof
332  tags[e][1] = 0; // edge id
333  tags[e][2] = i; // local dof id
334  tags[e][3] = iend; // total number of dofs in this edge
335  }
336 
337  const auto v1 = card -1;
338  tags[v1][0] = 0; // vertex dof
339  tags[v1][1] = 1; // vertex id
340  tags[v1][2] = 0; // local dof id
341  tags[v1][3] = 1; // total number of dofs in this vertex
342  }
343 
344  // topological order
345  // {
346  // tags[0][0] = 0; // vertex dof
347  // tags[0][1] = 0; // vertex id
348  // tags[0][2] = 0; // local dof id
349  // tags[0][3] = 1; // total number of dofs in this vertex
350 
351  // tags[1][0] = 0; // vertex dof
352  // tags[1][1] = 1; // vertex id
353  // tags[1][2] = 0; // local dof id
354  // tags[1][3] = 1; // total number of dofs in this vertex
355 
356  // const ordinal_type iend = card - 2;
357  // for (ordinal_type i=0;i<iend;++i) {
358  // const auto ii = i + 2;
359  // tags[ii][0] = 1; // edge dof
360  // tags[ii][1] = 0; // edge id
361  // tags[ii][2] = i; // local dof id
362  // tags[ii][3] = iend; // total number of dofs in this edge
363  // }
364  // }
365  } else {
366  for (ordinal_type i=0;i<card;++i) {
367  tags[i][0] = 1; // edge dof
368  tags[i][1] = 0; // edge id
369  tags[i][2] = i; // local dof id
370  tags[i][3] = card; // total number of dofs in this edge
371  }
372  }
373 
374  OrdinalTypeArray1DHost tagView(&tags[0][0], card*4);
375 
376  // Basis-independent function sets tag and enum data in tagToOrdinal_ and ordinalToTag_ arrays:
377  // tags are constructed on host
378  this->setOrdinalTagData(this->tagToOrdinal_,
379  this->ordinalToTag_,
380  tagView,
381  this->basisCardinality_,
382  tagSize,
383  posScDim,
384  posScOrd,
385  posDfOrd);
386  }
387  }
388 
389 }// namespace Intrepid2
390 
391 #endif
392 
393 
394 
395 
396 
397 
398 
399 
400 
401 
402 
403 
404 
405 
406 
Kokkos::View< ordinal_type *, typename ExecSpaceType::array_layout, Kokkos::HostSpace > OrdinalTypeArray1DHost
View type for 1d host array.
static void getLattice(Kokkos::DynRankView< pointValueType, pointProperties...> points, const shards::CellTopology cellType, const ordinal_type order, const ordinal_type offset=0, const EPointType pointType=POINTTYPE_EQUISPACED)
Computes a lattice of points of a given order on a reference simplex (currently disabled for other ce...
static void getGaussPoints(Kokkos::DynRankView< pointValueType, pointProperties...> points, const ordinal_type order)
static constexpr ordinal_type MaxOrder
The maximum reconstruction order.
Basis_HGRAD_LINE_Cn_FEM(const ordinal_type order, const EPointType pointType=POINTTYPE_EQUISPACED)
Constructor.