/usr/include/trilinos/Sacado_Fad_GeneralFad.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 | // @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).
//
// ***********************************************************************
//
// The forward-mode AD classes in Sacado are a derivative work of the
// expression template classes in the Fad package by Nicolas Di Cesare.
// The following banner is included in the original Fad source code:
//
// ************ DO NOT REMOVE THIS BANNER ****************
//
// Nicolas Di Cesare <Nicolas.Dicesare@ann.jussieu.fr>
// http://www.ann.jussieu.fr/~dicesare
//
// CEMRACS 98 : C++ courses,
// templates : new C++ techniques
// for scientific computing
//
//********************************************************
//
// A short implementation ( not all operators and
// functions are overloaded ) of 1st order Automatic
// Differentiation in forward mode (FAD) using
// EXPRESSION TEMPLATES.
//
//********************************************************
// @HEADER
#ifndef SACADO_FAD_GENERALFAD_HPP
#define SACADO_FAD_GENERALFAD_HPP
#include "Sacado_Fad_Expression.hpp"
namespace Sacado {
//! Namespace for forward-mode AD classes
namespace Fad {
#if defined(SACADO_VIEW_CUDA_HIERARCHICAL_DFAD) && !defined(SACADO_DISABLE_CUDA_IN_KOKKOS) && defined(__CUDA_ARCH__)
#define SACADO_FAD_DERIV_LOOP(I,SZ) for (int I=threadIdx.x; I<SZ; I+=blockDim.x)
#else
#define SACADO_FAD_DERIV_LOOP(I,SZ) for (int I=0; I<SZ; ++I)
#endif
//! Forward-mode AD class templated on the storage for the derivative array
/*!
* This class provides a general forward mode AD implementation for any
* type of derivative array storage. It does not incorporate expression
* templates.
*/
template <typename T, typename Storage>
class GeneralFad : public Storage {
public:
//! Typename of values
typedef typename RemoveConst<T>::type value_type;
//! Typename of scalar's (which may be different from T)
typedef typename ScalarType<value_type>::type scalar_type;
/*!
* @name Initialization methods
*/
//@{
//! Default constructor
KOKKOS_INLINE_FUNCTION
GeneralFad() : Storage(T(0.)) {}
//! Constructor with supplied value \c x
/*!
* Initializes value to \c x and derivative array is empty
*/
template <typename S>
KOKKOS_INLINE_FUNCTION
GeneralFad(const S& x, SACADO_ENABLE_VALUE_CTOR_DECL) :
Storage(x) {}
//! Constructor with size \c sz and value \c x
/*!
* Initializes value to \c x and derivative array 0 of length \c sz
*/
KOKKOS_INLINE_FUNCTION
GeneralFad(const int sz, const T & x, const DerivInit zero_out = InitDerivArray) :
Storage(sz, x, zero_out) {}
//! Constructor with size \c sz, index \c i, and value \c x
/*!
* Initializes value to \c x and derivative array of length \c sz
* as row \c i of the identity matrix, i.e., sets derivative component
* \c i to 1 and all other's to zero.
*/
KOKKOS_INLINE_FUNCTION
GeneralFad(const int sz, const int i, const T & x) :
Storage(sz, x, InitDerivArray) {
this->fastAccessDx(i)=1.;
}
//! Constructor with supplied storage \c s
KOKKOS_INLINE_FUNCTION
GeneralFad(const Storage& s) : Storage(s) {}
//! Copy constructor
KOKKOS_INLINE_FUNCTION
GeneralFad(const GeneralFad& x) :
Storage(x) {}
//! Copy constructor from any Expression object
template <typename S>
KOKKOS_INLINE_FUNCTION
GeneralFad(const Expr<S>& x, SACADO_ENABLE_EXPR_CTOR_DECL) :
Storage(x.size(), T(0.), NoInitDerivArray)
{
const int sz = x.size();
if (sz) {
if (x.hasFastAccess())
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) = x.fastAccessDx(i);
else
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) = x.dx(i);
}
this->val() = x.val();
}
//! Destructor
KOKKOS_INLINE_FUNCTION
~GeneralFad() {}
//! Set %GeneralFad object as the \c ith independent variable
/*!
* Sets the derivative array of length \c n to the \c ith row of the
* identity matrix and has the same affect as the
* Implementation(const int sz, const int i, const T & x)
* constructor.
*/
KOKKOS_INLINE_FUNCTION
void diff(const int ith, const int n) {
if (this->size() != n)
this->resize(n);
this->zero();
this->fastAccessDx(ith) = T(1.);
}
//! Set whether this Fad object should update values
KOKKOS_INLINE_FUNCTION
void setUpdateValue(bool update_val) { }
//! Return whether this Fad object has an updated value
KOKKOS_INLINE_FUNCTION
bool updateValue() const { return true; }
//! Returns whether two Fad objects have the same values
template <typename S>
KOKKOS_INLINE_FUNCTION
SACADO_ENABLE_EXPR_FUNC(bool) isEqualTo(const Expr<S>& x) const {
typedef IsEqual<value_type> IE;
if (x.size() != this->size()) return false;
bool eq = IE::eval(x.val(), this->val());
const int sz = this->size();
SACADO_FAD_DERIV_LOOP(i,sz)
eq = eq && IE::eval(x.dx(i), this->dx(i));
return eq;
}
//@}
/*!
* @name Derivative accessor methods
*/
//@{
/*!
* \brief Returns number of derivative components that can be stored
* without reallocation
*/
KOKKOS_INLINE_FUNCTION
int availableSize() const { return this->length(); }
//! Returns true if derivative array is not empty
KOKKOS_INLINE_FUNCTION
bool hasFastAccess() const { return this->size()!=0; }
//! Returns true if derivative array is empty
KOKKOS_INLINE_FUNCTION
bool isPassive() const { return this->size()==0; }
//! Set whether variable is constant
KOKKOS_INLINE_FUNCTION
void setIsConstant(bool is_const) {
if (is_const && this->size()!=0)
this->resize(0);
}
//@}
/*!
* @name Assignment operators
*/
//@{
//! Assignment operator with constant right-hand-side
template <typename S>
KOKKOS_INLINE_FUNCTION
SACADO_ENABLE_VALUE_FUNC(GeneralFad&) operator=(const S& v) {
this->val() = v;
if (this->size()) this->resize(0);
return *this;
}
//! Assignment with GeneralFad right-hand-side
KOKKOS_INLINE_FUNCTION
GeneralFad&
operator=(const GeneralFad& x) {
// Copy value & dx_
Storage::operator=(x);
return *this;
}
//! Assignment operator with any expression right-hand-side
template <typename S>
KOKKOS_INLINE_FUNCTION
SACADO_ENABLE_EXPR_FUNC(GeneralFad&) operator=(const Expr<S>& x) {
const int xsz = x.size();
if (xsz != this->size())
this->resizeAndZero(xsz);
const int sz = this->size();
// For ViewStorage, the resize above may not in fact resize the
// derivative array, so it is possible that sz != xsz at this point.
// The only valid use case here is sz > xsz == 0, so we use sz in the
// assignment below
if (sz) {
if (x.hasFastAccess()) {
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) = x.fastAccessDx(i);
}
else
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) = x.dx(i);
}
this->val() = x.val();
return *this;
}
//@}
/*!
* @name Unary operators
*/
//@{
//! Addition-assignment operator with constant right-hand-side
template <typename S>
KOKKOS_INLINE_FUNCTION
SACADO_ENABLE_VALUE_FUNC(GeneralFad&) operator += (const S& v) {
this->val() += v;
return *this;
}
//! Subtraction-assignment operator with constant right-hand-side
template <typename S>
KOKKOS_INLINE_FUNCTION
SACADO_ENABLE_VALUE_FUNC(GeneralFad&) operator -= (const S& v) {
this->val() -= v;
return *this;
}
//! Multiplication-assignment operator with constant right-hand-side
template <typename S>
KOKKOS_INLINE_FUNCTION
SACADO_ENABLE_VALUE_FUNC(GeneralFad&) operator *= (const S& v) {
const int sz = this->size();
this->val() *= v;
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) *= v;
return *this;
}
//! Division-assignment operator with constant right-hand-side
template <typename S>
KOKKOS_INLINE_FUNCTION
SACADO_ENABLE_VALUE_FUNC(GeneralFad&) operator /= (const S& v) {
const int sz = this->size();
this->val() /= v;
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) /= v;
return *this;
}
//! Addition-assignment operator with GeneralFad right-hand-side
KOKKOS_INLINE_FUNCTION
GeneralFad& operator += (const GeneralFad& x) {
const int xsz = x.size(), sz = this->size();
#if defined(SACADO_DEBUG) && !defined(__CUDA_ARCH__ )
if ((xsz != sz) && (xsz != 0) && (sz != 0))
throw "Fad Error: Attempt to assign with incompatible sizes";
#endif
if (xsz) {
if (sz) {
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) += x.fastAccessDx(i);
}
else {
this->resizeAndZero(xsz);
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = x.fastAccessDx(i);
}
}
this->val() += x.val();
return *this;
}
//! Subtraction-assignment operator with GeneralFad right-hand-side
KOKKOS_INLINE_FUNCTION
GeneralFad& operator -= (const GeneralFad& x) {
const int xsz = x.size(), sz = this->size();
#if defined(SACADO_DEBUG) && !defined(__CUDA_ARCH__ )
if ((xsz != sz) && (xsz != 0) && (sz != 0))
throw "Fad Error: Attempt to assign with incompatible sizes";
#endif
if (xsz) {
if (sz) {
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) -= x.fastAccessDx(i);
}
else {
this->resizeAndZero(xsz);
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = -x.fastAccessDx(i);
}
}
this->val() -= x.val();
return *this;
}
//! Multiplication-assignment operator with GeneralFad right-hand-side
KOKKOS_INLINE_FUNCTION
GeneralFad& operator *= (const GeneralFad& x) {
const int xsz = x.size(), sz = this->size();
T xval = x.val();
T v = this->val();
#if defined(SACADO_DEBUG) && !defined(__CUDA_ARCH__ )
if ((xsz != sz) && (xsz != 0) && (sz != 0))
throw "Fad Error: Attempt to assign with incompatible sizes";
#endif
if (xsz) {
if (sz) {
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) = v*x.fastAccessDx(i) + this->fastAccessDx(i)*xval;
}
else {
this->resizeAndZero(xsz);
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = v*x.fastAccessDx(i);
}
}
else {
if (sz) {
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) *= xval;
}
}
this->val() *= xval;
return *this;
}
//! Division-assignment operator with GeneralFad right-hand-side
KOKKOS_INLINE_FUNCTION
GeneralFad& operator /= (const GeneralFad& x) {
const int xsz = x.size(), sz = this->size();
T xval = x.val();
T v = this->val();
#if defined(SACADO_DEBUG) && !defined(__CUDA_ARCH__ )
if ((xsz != sz) && (xsz != 0) && (sz != 0))
throw "Fad Error: Attempt to assign with incompatible sizes";
#endif
if (xsz) {
if (sz) {
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) =
( this->fastAccessDx(i)*xval - v*x.fastAccessDx(i) )/ (xval*xval);
}
else {
this->resizeAndZero(xsz);
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = - v*x.fastAccessDx(i) / (xval*xval);
}
}
else {
if (sz) {
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) /= xval;
}
}
this->val() /= xval;
return *this;
}
//! Addition-assignment operator with Expr right-hand-side
template <typename S>
KOKKOS_INLINE_FUNCTION
SACADO_ENABLE_EXPR_FUNC(GeneralFad&) operator += (const Expr<S>& x) {
const int xsz = x.size(), sz = this->size();
#if defined(SACADO_DEBUG) && !defined(__CUDA_ARCH__ )
if ((xsz != sz) && (xsz != 0) && (sz != 0))
throw "Fad Error: Attempt to assign with incompatible sizes";
#endif
if (xsz) {
if (sz) {
if (x.hasFastAccess())
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) += x.fastAccessDx(i);
else
for (int i=0; i<sz; ++i)
this->fastAccessDx(i) += x.dx(i);
}
else {
this->resizeAndZero(xsz);
if (x.hasFastAccess())
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = x.fastAccessDx(i);
else
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = x.dx(i);
}
}
this->val() += x.val();
return *this;
}
//! Subtraction-assignment operator with Expr right-hand-side
template <typename S>
KOKKOS_INLINE_FUNCTION
SACADO_ENABLE_EXPR_FUNC(GeneralFad&) operator -= (const Expr<S>& x) {
const int xsz = x.size(), sz = this->size();
#if defined(SACADO_DEBUG) && !defined(__CUDA_ARCH__ )
if ((xsz != sz) && (xsz != 0) && (sz != 0))
throw "Fad Error: Attempt to assign with incompatible sizes";
#endif
if (xsz) {
if (sz) {
if (x.hasFastAccess())
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) -= x.fastAccessDx(i);
else
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) -= x.dx(i);
}
else {
this->resizeAndZero(xsz);
if (x.hasFastAccess())
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = -x.fastAccessDx(i);
else
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = -x.dx(i);
}
}
this->val() -= x.val();
return *this;
}
//! Multiplication-assignment operator with Expr right-hand-side
template <typename S>
KOKKOS_INLINE_FUNCTION
SACADO_ENABLE_EXPR_FUNC(GeneralFad&) operator *= (const Expr<S>& x) {
const int xsz = x.size(), sz = this->size();
T xval = x.val();
T v = this->val();
#if defined(SACADO_DEBUG) && !defined(__CUDA_ARCH__ )
if ((xsz != sz) && (xsz != 0) && (sz != 0))
throw "Fad Error: Attempt to assign with incompatible sizes";
#endif
if (xsz) {
if (sz) {
if (x.hasFastAccess())
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) = v*x.fastAccessDx(i) + this->fastAccessDx(i)*xval;
else
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) = v*x.dx(i) + this->fastAccessDx(i)*xval;
}
else {
this->resizeAndZero(xsz);
if (x.hasFastAccess())
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = v*x.fastAccessDx(i);
else
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = v*x.dx(i);
}
}
else {
if (sz) {
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) *= xval;
}
}
this->val() *= xval;
return *this;
}
//! Division-assignment operator with Expr right-hand-side
template <typename S>
KOKKOS_INLINE_FUNCTION
SACADO_ENABLE_EXPR_FUNC(GeneralFad&) operator /= (const Expr<S>& x) {
const int xsz = x.size(), sz = this->size();
T xval = x.val();
T v = this->val();
#if defined(SACADO_DEBUG) && !defined(__CUDA_ARCH__ )
if ((xsz != sz) && (xsz != 0) && (sz != 0))
throw "Fad Error: Attempt to assign with incompatible sizes";
#endif
if (xsz) {
if (sz) {
if (x.hasFastAccess())
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) = ( this->fastAccessDx(i)*xval - v*x.fastAccessDx(i) )/ (xval*xval);
else
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) = ( this->fastAccessDx(i)*xval - v*x.dx(i) )/ (xval*xval);
}
else {
this->resizeAndZero(xsz);
if (x.hasFastAccess())
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = - v*x.fastAccessDx(i) / (xval*xval);
else
SACADO_FAD_DERIV_LOOP(i,xsz)
this->fastAccessDx(i) = -v*x.dx(i) / (xval*xval);
}
}
else {
if (sz) {
SACADO_FAD_DERIV_LOOP(i,sz)
this->fastAccessDx(i) /= xval;
}
}
this->val() /= xval;
return *this;
}
//@}
}; // class GeneralFad
} // namespace Fad
} // namespace Sacado
#endif // SACADO_FAD_GENERALFAD_HPP
|