/usr/include/trilinos/Sacado_Fad_ScalarTraitsImp.hpp is in libtrilinos-sacado-dev 12.12.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 | // @HEADER
// ***********************************************************************
//
// Sacado Package
// Copyright (2006) Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
// USA
// Questions? Contact David M. Gay (dmgay@sandia.gov) or Eric T. Phipps
// (etphipp@sandia.gov).
//
// ***********************************************************************
// @HEADER
#ifndef SACADO_FAD_SCALARTRAITSIMP_HPP
#define SACADO_FAD_SCALARTRAITSIMP_HPP
#ifdef HAVE_SACADO_TEUCHOS
#include "Teuchos_ScalarTraits.hpp"
#include "Teuchos_SerializationTraits.hpp"
#include "Teuchos_SerializationTraitsHelpers.hpp"
#include "Teuchos_Assert.hpp"
#include "Teuchos_RCP.hpp"
#include "Teuchos_Array.hpp"
#include "Sacado_mpl_apply.hpp"
#include <iterator>
namespace Sacado {
namespace Fad {
//! Implementation for Teuchos::ScalarTraits for all Fad types
template <typename FadType>
struct ScalarTraitsImp {
typedef typename Sacado::ValueType<FadType>::type ValueT;
typedef typename mpl::apply<FadType,typename Teuchos::ScalarTraits<ValueT>::magnitudeType>::type magnitudeType;
typedef typename mpl::apply<FadType,typename Teuchos::ScalarTraits<ValueT>::halfPrecision>::type halfPrecision;
typedef typename mpl::apply<FadType,typename Teuchos::ScalarTraits<ValueT>::doublePrecision>::type doublePrecision;
static const bool isComplex = Teuchos::ScalarTraits<ValueT>::isComplex;
static const bool isOrdinal = Teuchos::ScalarTraits<ValueT>::isOrdinal;
static const bool isComparable =
Teuchos::ScalarTraits<ValueT>::isComparable;
static const bool hasMachineParameters =
Teuchos::ScalarTraits<ValueT>::hasMachineParameters;
static typename Teuchos::ScalarTraits<ValueT>::magnitudeType eps() {
return Teuchos::ScalarTraits<ValueT>::eps();
}
static typename Teuchos::ScalarTraits<ValueT>::magnitudeType sfmin() {
return Teuchos::ScalarTraits<ValueT>::sfmin();
}
static typename Teuchos::ScalarTraits<ValueT>::magnitudeType base() {
return Teuchos::ScalarTraits<ValueT>::base();
}
static typename Teuchos::ScalarTraits<ValueT>::magnitudeType prec() {
return Teuchos::ScalarTraits<ValueT>::prec();
}
static typename Teuchos::ScalarTraits<ValueT>::magnitudeType t() {
return Teuchos::ScalarTraits<ValueT>::t();
}
static typename Teuchos::ScalarTraits<ValueT>::magnitudeType rnd() {
return Teuchos::ScalarTraits<ValueT>::rnd();
}
static typename Teuchos::ScalarTraits<ValueT>::magnitudeType emin() {
return Teuchos::ScalarTraits<ValueT>::emin();
}
static typename Teuchos::ScalarTraits<ValueT>::magnitudeType rmin() {
return Teuchos::ScalarTraits<ValueT>::rmin();
}
static typename Teuchos::ScalarTraits<ValueT>::magnitudeType emax() {
return Teuchos::ScalarTraits<ValueT>::emax();
}
static typename Teuchos::ScalarTraits<ValueT>::magnitudeType rmax() {
return Teuchos::ScalarTraits<ValueT>::rmax();
}
static magnitudeType magnitude(const FadType& a) {
#ifdef TEUCHOS_DEBUG
TEUCHOS_SCALAR_TRAITS_NAN_INF_ERR(
a, "Error, the input value to magnitude(...) a = " << a <<
" can not be NaN!" );
TEUCHOS_TEST_FOR_EXCEPTION(is_fad_real(a) == false, std::runtime_error,
"Complex magnitude is not a differentiable "
"function of complex inputs.");
#endif
//return std::fabs(a);
magnitudeType b(a.size(),
Teuchos::ScalarTraits<ValueT>::magnitude(a.val()));
if (Teuchos::ScalarTraits<ValueT>::real(a.val()) >= 0)
for (int i=0; i<a.size(); i++)
b.fastAccessDx(i) =
Teuchos::ScalarTraits<ValueT>::magnitude(a.fastAccessDx(i));
else
for (int i=0; i<a.size(); i++)
b.fastAccessDx(i) =
-Teuchos::ScalarTraits<ValueT>::magnitude(a.fastAccessDx(i));
return b;
}
static ValueT zero() {
return ValueT(0.0);
}
static ValueT one() {
return ValueT(1.0);
}
// Conjugate is only defined for real derivative components
static FadType conjugate(const FadType& x) {
#ifdef TEUCHOS_DEBUG
TEUCHOS_TEST_FOR_EXCEPTION(is_fad_real(x) == false, std::runtime_error,
"Complex conjugate is not a differentiable "
"function of complex inputs.");
#endif
FadType y = x;
y.val() = Teuchos::ScalarTraits<ValueT>::conjugate(x.val());
return y;
}
// Real part is only defined for real derivative components
static FadType real(const FadType& x) {
#ifdef TEUCHOS_DEBUG
TEUCHOS_TEST_FOR_EXCEPTION(is_fad_real(x) == false, std::runtime_error,
"Real component is not a differentiable "
"function of complex inputs.");
#endif
FadType y = x;
y.val() = Teuchos::ScalarTraits<ValueT>::real(x.val());
return y;
}
// Imaginary part is only defined for real derivative components
static FadType imag(const FadType& x) {
#ifdef TEUCHOS_DEBUG
TEUCHOS_TEST_FOR_EXCEPTION(is_fad_real(x) == false, std::runtime_error,
"Imaginary component is not a differentiable "
"function of complex inputs.");
#endif
return FadType(Teuchos::ScalarTraits<ValueT>::imag(x.val()));
}
static ValueT nan() {
return Teuchos::ScalarTraits<ValueT>::nan();
}
static bool isnaninf(const FadType& x) {
if (Teuchos::ScalarTraits<ValueT>::isnaninf(x.val()))
return true;
for (int i=0; i<x.size(); i++)
if (Teuchos::ScalarTraits<ValueT>::isnaninf(x.dx(i)))
return true;
return false;
}
static void seedrandom(unsigned int s) {
Teuchos::ScalarTraits<ValueT>::seedrandom(s);
}
static ValueT random() {
return Teuchos::ScalarTraits<ValueT>::random();
}
static std::string name() {
return Sacado::StringName<FadType>::eval();
}
static FadType squareroot(const FadType& x) {
#ifdef TEUCHOS_DEBUG
TEUCHOS_SCALAR_TRAITS_NAN_INF_ERR(
x, "Error, the input value to squareroot(...) a = " << x <<
" can not be NaN!" );
#endif
return std::sqrt(x);
}
static FadType pow(const FadType& x, const FadType& y) {
return std::pow(x,y);
}
// Helper function to determine whether a complex value is real
static bool is_complex_real(const ValueT& x) {
return
Teuchos::ScalarTraits<ValueT>::magnitude(x-Teuchos::ScalarTraits<ValueT>::real(x)) == 0;
}
// Helper function to determine whether a Fad type is real
static bool is_fad_real(const FadType& x) {
if (x.size() == 0)
return true;
if (Teuchos::ScalarTraits<ValueT>::isComplex) {
if (!is_complex_real(x.val()))
return false;
for (int i=0; i<x.size(); i++)
if (!is_complex_real(x.fastAccessDx(i)))
return false;
}
return true;
}
}; // class ScalarTraitsImp
//! Serialization mplementation for all Fad types
template <typename Ordinal, typename FadType, typename Serializer>
struct SerializationImp {
private:
//! How to serialize ints
typedef Teuchos::SerializationTraits<Ordinal,int> iSerT;
//! How to serialize ordinals
typedef Teuchos::SerializationTraits<Ordinal,Ordinal> oSerT;
//! Value type
typedef typename Sacado::ValueType<FadType>::type value_type;
public:
/// \brief Whether the type T supports direct serialization.
static const bool supportsDirectSerialization = false;
//! @name Indirect serialization functions (always defined and supported)
//@{
/** \brief Return the number of bytes for <tt>count</tt> objects. */
static Ordinal fromCountToIndirectBytes(const Serializer& vs,
const Ordinal count,
const FadType buffer[],
const Ordinal sz = 0) {
Ordinal bytes = 0;
FadType *x = NULL;
const FadType *cx;
for (Ordinal i=0; i<count; i++) {
int my_sz = buffer[i].size();
int tot_sz = sz;
if (sz == 0) tot_sz = my_sz;
Ordinal b1 = iSerT::fromCountToIndirectBytes(1, &tot_sz);
Ordinal b2 = vs.fromCountToIndirectBytes(1, &(buffer[i].val()));
Ordinal b3 = oSerT::fromCountToIndirectBytes(1, &b2);
Ordinal b4;
if (tot_sz != my_sz) {
if (x == NULL)
x = new FadType(tot_sz, 0.0);
*x = buffer[i];
x->expand(tot_sz);
cx = x;
}
else
cx = &(buffer[i]);
b4 = vs.fromCountToIndirectBytes(tot_sz, cx->dx());
Ordinal b5 = oSerT::fromCountToIndirectBytes(1, &b4);
bytes += b1+b2+b3+b4+b5;
}
if (x != NULL)
delete x;
return bytes;
}
/** \brief Serialize to an indirect <tt>char[]</tt> buffer. */
static void serialize (const Serializer& vs,
const Ordinal count,
const FadType buffer[],
const Ordinal bytes,
char charBuffer[],
const Ordinal sz = 0) {
FadType *x = NULL;
const FadType *cx;
for (Ordinal i=0; i<count; i++) {
// First serialize size
int my_sz = buffer[i].size();
int tot_sz = sz;
if (sz == 0) tot_sz = my_sz;
Ordinal b1 = iSerT::fromCountToIndirectBytes(1, &tot_sz);
iSerT::serialize(1, &tot_sz, b1, charBuffer);
charBuffer += b1;
// Next serialize value
Ordinal b2 = vs.fromCountToIndirectBytes(1, &(buffer[i].val()));
Ordinal b3 = oSerT::fromCountToIndirectBytes(1, &b2);
oSerT::serialize(1, &b2, b3, charBuffer);
charBuffer += b3;
vs.serialize(1, &(buffer[i].val()), b2, charBuffer);
charBuffer += b2;
// Next serialize derivative array
Ordinal b4;
if (tot_sz != my_sz) {
if (x == NULL)
x = new FadType(tot_sz, 0.0);
*x = buffer[i];
x->expand(tot_sz);
cx = x;
}
else
cx = &(buffer[i]);
b4 = vs.fromCountToIndirectBytes(tot_sz, cx->dx());
Ordinal b5 = oSerT::fromCountToIndirectBytes(1, &b4);
oSerT::serialize(1, &b4, b5, charBuffer);
charBuffer += b5;
vs.serialize(tot_sz, cx->dx(), b4, charBuffer);
charBuffer += b4;
}
if (x != NULL)
delete x;
}
/** \brief Return the number of objects for <tt>bytes</tt> of storage. */
static Ordinal fromIndirectBytesToCount(const Serializer& vs,
const Ordinal bytes,
const char charBuffer[],
const Ordinal sz = 0) {
Ordinal count = 0;
Ordinal bytes_used = 0;
while (bytes_used < bytes) {
// Bytes for size
Ordinal b1 = iSerT::fromCountToDirectBytes(1);
bytes_used += b1;
charBuffer += b1;
// Bytes for value
Ordinal b3 = oSerT::fromCountToDirectBytes(1);
const Ordinal *b2 = oSerT::convertFromCharPtr(charBuffer);
bytes_used += b3;
charBuffer += b3;
bytes_used += *b2;
charBuffer += *b2;
// Bytes for derivative array
Ordinal b5 = oSerT::fromCountToDirectBytes(1);
const Ordinal *b4 = oSerT::convertFromCharPtr(charBuffer);
bytes_used += b5;
charBuffer += b5;
bytes_used += *b4;
charBuffer += *b4;
++count;
}
return count;
}
/** \brief Deserialize from an indirect <tt>char[]</tt> buffer. */
static void deserialize (const Serializer& vs,
const Ordinal bytes,
const char charBuffer[],
const Ordinal count,
FadType buffer[],
const Ordinal sz = 0) {
for (Ordinal i=0; i<count; i++) {
// Deserialize size
Ordinal b1 = iSerT::fromCountToDirectBytes(1);
const int *my_sz = iSerT::convertFromCharPtr(charBuffer);
charBuffer += b1;
// Create empty Fad object of given size
int tot_sz = sz;
if (sz == 0) tot_sz = *my_sz;
buffer[i] = FadType(tot_sz, 0.0);
// Deserialize value
Ordinal b3 = oSerT::fromCountToDirectBytes(1);
const Ordinal *b2 = oSerT::convertFromCharPtr(charBuffer);
charBuffer += b3;
vs.deserialize(*b2, charBuffer, 1, &(buffer[i].val()));
charBuffer += *b2;
// Deserialize derivative array
Ordinal b5 = oSerT::fromCountToDirectBytes(1);
const Ordinal *b4 = oSerT::convertFromCharPtr(charBuffer);
charBuffer += b5;
vs.deserialize(*b4, charBuffer, *my_sz,
&(buffer[i].fastAccessDx(0)));
charBuffer += *b4;
}
}
//@}
};
//! Implementation of Teuchos::SerializationTraits for all Fad types
template <typename Ordinal, typename FadType>
struct SerializationTraitsImp {
private:
//! Value type of Fad type
typedef typename Sacado::ValueType<FadType>::type ValueT;
//! Default serializer for values
typedef Teuchos::DefaultSerializer<Ordinal,ValueT> DS;
//! Default serializer type for values
typedef typename DS::DefaultSerializerType ValueSerializer;
//! Implementation
typedef SerializationImp<Ordinal,FadType,ValueSerializer> Imp;
public:
/// \brief Whether the type T supports direct serialization.
static const bool supportsDirectSerialization =
Imp::supportsDirectSerialization;
//! @name Indirect serialization functions (always defined and supported)
//@{
/** \brief Return the number of bytes for <tt>count</tt> objects. */
static Ordinal fromCountToIndirectBytes(const Ordinal count,
const FadType buffer[]) {
return Imp::fromCountToIndirectBytes(
DS::getDefaultSerializer(), count, buffer);
}
/** \brief Serialize to an indirect <tt>char[]</tt> buffer. */
static void serialize (const Ordinal count,
const FadType buffer[],
const Ordinal bytes,
char charBuffer[]) {
Imp::serialize(
DS::getDefaultSerializer(), count, buffer, bytes, charBuffer);
}
/** \brief Return the number of objects for <tt>bytes</tt> of storage. */
static Ordinal fromIndirectBytesToCount(const Ordinal bytes,
const char charBuffer[]) {
return Imp::fromIndirectBytesToCount(
DS::getDefaultSerializer(), bytes, charBuffer);
}
/** \brief Deserialize from an indirect <tt>char[]</tt> buffer. */
static void deserialize (const Ordinal bytes,
const char charBuffer[],
const Ordinal count,
FadType buffer[]) {
Imp::deserialize(
DS::getDefaultSerializer(), bytes, charBuffer, count, buffer);
}
//@}
};
//! Implementation of Teuchos::SerializationTraits for all static Fad types
template <typename Ordinal, typename FadType>
struct StaticSerializationTraitsImp {
typedef typename Sacado::ValueType<FadType>::type ValueT;
typedef Teuchos::SerializationTraits<Ordinal,ValueT> vSerT;
typedef Teuchos::DirectSerializationTraits<Ordinal,FadType> DSerT;
typedef Sacado::Fad::SerializationTraitsImp<Ordinal,FadType> STI;
/// \brief Whether the type T supports direct serialization.
static const bool supportsDirectSerialization =
vSerT::supportsDirectSerialization;
//! @name Direct serialization functions (not defined if supportsDirectSerialization==false)
//@{
/** \brief Return the number of bytes for <tt>count</tt> objects. */
static Ordinal fromCountToDirectBytes(const Ordinal count) {
return DSerT::fromCountToDirectBytes(count);
}
/** \brief Convert the pointer type to <tt>char*</tt>. */
static char* convertToCharPtr( FadType* ptr ) {
return DSerT::convertToCharPtr(ptr);
}
/** \brief Convert the pointer type to <tt>const char*</tt>. */
static const char* convertToCharPtr( const FadType* ptr ) {
return DSerT::convertToCharPtr(ptr);
}
/** \brief Return the number of objects for <tt>bytes</tt> of storage. */
static Ordinal fromDirectBytesToCount(const Ordinal bytes) {
return DSerT::fromDirectBytesToCount(bytes);
}
/** \brief Convert the pointer type from <tt>char*</tt>. */
static FadType* convertFromCharPtr( char* ptr ) {
return DSerT::convertFromCharPtr(ptr);
}
/** \brief Convert the pointer type from <tt>char*</tt>. */
static const FadType* convertFromCharPtr( const char* ptr ) {
return DSerT::convertFromCharPtr(ptr);
}
//@}
//! @name Indirect serialization functions (always defined and supported)
//@{
/** \brief Return the number of bytes for <tt>count</tt> objects. */
static Ordinal fromCountToIndirectBytes(const Ordinal count,
const FadType buffer[]) {
if (supportsDirectSerialization)
return DSerT::fromCountToIndirectBytes(count, buffer);
else
return STI::fromCountToIndirectBytes(count, buffer);
}
/** \brief Serialize to an indirect <tt>char[]</tt> buffer. */
static void serialize (const Ordinal count,
const FadType buffer[],
const Ordinal bytes,
char charBuffer[]) {
if (supportsDirectSerialization)
return DSerT::serialize(count, buffer, bytes, charBuffer);
else
return STI::serialize(count, buffer, bytes, charBuffer);
}
/** \brief Return the number of objects for <tt>bytes</tt> of storage. */
static Ordinal fromIndirectBytesToCount(const Ordinal bytes,
const char charBuffer[]) {
if (supportsDirectSerialization)
return DSerT::fromIndirectBytesToCount(bytes, charBuffer);
else
return STI::fromIndirectBytesToCount(bytes, charBuffer);
}
/** \brief Deserialize from an indirect <tt>char[]</tt> buffer. */
static void deserialize (const Ordinal bytes,
const char charBuffer[],
const Ordinal count,
FadType buffer[]) {
if (supportsDirectSerialization)
return DSerT::deserialize(bytes, charBuffer, count, buffer);
else
return STI::deserialize(bytes, charBuffer, count, buffer);
}
//@}
};
//! An indirect serialization object for all Fad types
template <typename Ordinal, typename FadType, typename ValueSerializer>
class SerializerImp {
private:
//! Implementation
typedef SerializationImp<Ordinal,FadType,ValueSerializer> Imp;
//! Serializer for value types
Teuchos::RCP<const ValueSerializer> vs;
//! Specified number of derivative components;
Ordinal sz;
public:
//! Typename of value serializer
typedef ValueSerializer value_serializer_type;
/// \brief Whether we support direct serialization.
static const bool supportsDirectSerialization =
Imp::supportsDirectSerialization;
//! Constructor
SerializerImp(const Teuchos::RCP<const ValueSerializer>& vs_,
Ordinal sz_ = 0) :
vs(vs_), sz(sz_) {}
//! Return specified serializer size
Ordinal getSerializerSize() const { return sz; }
//! Get nested value serializer
Teuchos::RCP<const value_serializer_type> getValueSerializer() const {
return vs; }
//! @name Indirect serialization functions (always defined and supported)
//@{
/** \brief Return the number of bytes for <tt>count</tt> objects. */
Ordinal fromCountToIndirectBytes(const Ordinal count,
const FadType buffer[]) const {
return Imp::fromCountToIndirectBytes(*vs, count, buffer, sz);
}
/** \brief Serialize to an indirect <tt>char[]</tt> buffer. */
void serialize (const Ordinal count,
const FadType buffer[],
const Ordinal bytes,
char charBuffer[]) const {
Imp::serialize(*vs, count, buffer, bytes, charBuffer, sz);
}
/** \brief Return the number of objects for <tt>bytes</tt> of storage. */
Ordinal fromIndirectBytesToCount(const Ordinal bytes,
const char charBuffer[]) const {
return Imp::fromIndirectBytesToCount(*vs, bytes, charBuffer, sz);
}
/** \brief Deserialize from an indirect <tt>char[]</tt> buffer. */
void deserialize (const Ordinal bytes,
const char charBuffer[],
const Ordinal count,
FadType buffer[]) const {
return Imp::deserialize(*vs, bytes, charBuffer, count, buffer, sz);
}
//@}
};
} // namespace Fad
} // namespace Sacado
#include "Sacado_ConfigDefs.h"
#if defined(HAVE_SACADO_KOKKOSCORE) && defined(HAVE_SACADO_TEUCHOSKOKKOSCOMM) && defined(HAVE_SACADO_VIEW_SPEC) && !defined(SACADO_DISABLE_FAD_VIEW_SPEC)
#include "KokkosExp_View_Fad.hpp"
#endif
#endif // HAVE_SACADO_TEUCHOS
#endif // SACADO_FAD_SCALARTRAITSIMP_HPP
|