/usr/include/trilinos/ROL_TpetraBoundConstraint.hpp is in libtrilinos-rol-dev 12.10.1-3.
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 | // @HEADER
// ************************************************************************
//
// Rapid Optimization Library (ROL) Package
// Copyright (2014) Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// 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 lead developers:
// Drew Kouri (dpkouri@sandia.gov) and
// Denis Ridzal (dridzal@sandia.gov)
//
// ************************************************************************
// @HEADER
/** \file
\brief Contains definitions for Tpetra::MultiVector bound constraints.
\author Created by G. von Winckel
*/
#ifndef ROL_TPETRABOUNDCONSTRAINT_HPP
#define ROL_TPETRABOUNDCONSTRAINT_HPP
#include "Kokkos_Core.hpp"
#include "ROL_TpetraMultiVector.hpp"
#include "ROL_BoundConstraint.hpp"
namespace ROL {
namespace KokkosStructs { // Parallel for and reduce functions
//----------------------------------------------------------------------
//
// Find the minimum u_i-l_i
template<class Real, class V>
struct MinGap {
typedef typename V::execution_space execution_space;
V L_; // Lower bounds
V U_; // Upper bounds
MinGap(const V& L, const V& U) : L_(L), U_(U) {}
KOKKOS_INLINE_FUNCTION
void operator() (const int i, Real &min) const {
const int M = L_.dimension_1();
for(int j=0;j<M;++j) {
Real gap = U_(i,j)-L_(i,j);
if(gap<min) {
min = gap;
}
}
}
KOKKOS_INLINE_FUNCTION
void init(Real &min) const {
min = U_(0,0)-L_(0,0);
}
KOKKOS_INLINE_FUNCTION
void join(volatile Real &globalMin,
const volatile Real &localMin) const {
if(localMin<globalMin) {
globalMin = localMin;
}
}
}; // End struct MinGap
//----------------------------------------------------------------------
//
// Determine if every l_i<=x_i<=u_i
template<class Real, class V>
struct Feasible {
typedef typename V::execution_space execution_space;
V X_; // Optimization variable
V L_; // Lower bounds
V U_; // Upper bounds
Feasible(const V& X, const V& L, const V& U) : X_(X), L_(L), U_(U) {}
KOKKOS_INLINE_FUNCTION
void operator() (const int i, int &feasible) const {
const int M = L_.dimension_1();
for(int j=0;j<M;++j) {
if( (X_(i,j)<L_(i,j)) || (X_(i,j)>U_(i,j)) ) {
feasible = 0;
}
}
}
KOKKOS_INLINE_FUNCTION
void init(int &feasible) const {
feasible = 1;
}
KOKKOS_INLINE_FUNCTION
void join(volatile int &globalFeasible,
const volatile int &localFeasible) const {
globalFeasible *= localFeasible;
}
}; // End struct Feasible
//----------------------------------------------------------------------
//
// Project x onto the bounds
template<class Real, class V>
struct Project {
typedef typename V::execution_space execution_space;
V X_; // Optimization variable
V L_; // Lower bounds
V U_; // Upper bounds
Project(V& X, const V& L, const V& U) : X_(X), L_(L), U_(U) {}
KOKKOS_INLINE_FUNCTION
void operator() (const int i) const {
const int M = L_.dimension_1();
for(int j=0;j<M;++j) {
if( X_(i,j)<L_(i,j) ) {
X_(i,j) = L_(i,j);
}
else if( X_(i,j)>U_(i,j) ) {
X_(i,j) = U_(i,j);
}
}
}
}; // End struct Project
//----------------------------------------------------------------------
//
// Set variables to zero if they correspond to the lower active set
template<class Real, class V>
struct PruneLowerActive {
typedef typename V::execution_space execution_space;
V Y_; // Variable to be pruned
V X_; // Optimization variable
V L_; // Lower bounds
Real eps_;
PruneLowerActive(V &Y, const V &X, const V &L, Real eps) :
Y_(Y), X_(X), L_(L), eps_(eps) {}
KOKKOS_INLINE_FUNCTION
void operator() (const int i) const {
const int M = L_.dimension_1();
for(int j=0;j<M;++j) {
if(X_(i,j)<=L_(i,j)+eps_) {
Y_(i,j) = 0.0;
}
}
}
}; // End struct PruneLowerActive
//----------------------------------------------------------------------
//
// Set variables to zero if they correspond to the upper active set
template<class Real, class V>
struct PruneUpperActive {
typedef typename V::execution_space execution_space;
V Y_; // Variable to be pruned
V X_; // Optimization variable
V U_; // Upper bounds
Real eps_;
PruneUpperActive(V &Y, const V &X, const V &U, Real eps) :
Y_(Y), X_(X), U_(U), eps_(eps) {}
KOKKOS_INLINE_FUNCTION
void operator() (const int i) const {
const int M = U_.dimension_1();
for(int j=0;j<M;++j) {
if(X_(i,j)>=U_(i,j)-eps_) {
Y_(i,j) = 0.0;
}
}
}
}; // End struct PruneUpperActive
//----------------------------------------------------------------------
//
// Set variables to zero if they correspond to the active set
template<class Real, class V>
struct PruneActive {
typedef typename V::execution_space execution_space;
V Y_; // Variable to be pruned
V X_; // Optimization variable
V L_; // Lower bounds
V U_; // Upper bounds
Real eps_;
PruneActive(V &Y, const V &X, const V &L, const V &U, Real eps) :
Y_(Y), X_(X), L_(L), U_(U), eps_(eps) {}
KOKKOS_INLINE_FUNCTION
void operator() (const int i) const {
const int M = L_.dimension_1();
for(int j=0;j<M;++j) {
if(X_(i,j)<=L_(i,j)+eps_) {
Y_(i,j) = 0.0;
}
else if(X_(i,j)>=U_(i,j)-eps_) {
Y_(i,j) = 0.0;
}
}
}
}; // End struct PruneActive
//----------------------------------------------------------------------
//
// Set variables to zero if they correspond to the lower active set and grad is positive
template<class Real, class V>
struct GradPruneLowerActive {
typedef typename V::execution_space execution_space;
V Y_; // Variable to be pruned
V G_; // Gradient
V X_; // Optimization variable
V L_; // Lower bounds
Real eps_;
GradPruneLowerActive(V &Y, const V &G, const V &X, const V &L,Real eps) :
Y_(Y), G_(G), X_(X), L_(L), eps_(eps) {}
KOKKOS_INLINE_FUNCTION
void operator() (const int i) const {
const int M = L_.dimension_1();
for(int j=0;j<M;++j) {
if( (X_(i,j)<=L_(i,j)+eps_) && G_(i,j) > 0.0 ) {
Y_(i,j) = 0.0;
}
}
}
}; // End struct GradPruneLowerActive
//----------------------------------------------------------------------
//
// Set variables to zero if they correspond to the upper active set and grad is negative
template<class Real, class V>
struct GradPruneUpperActive {
typedef typename V::execution_space execution_space;
V Y_; // Variable to be pruned
V G_; // Gradient
V X_; // Optimization variable
V U_; // Upper bounds
Real eps_;
GradPruneUpperActive(V &Y, const V &G, const V &X, const V &U, Real eps) :
Y_(Y), G_(G), X_(X), U_(U), eps_(eps) {}
KOKKOS_INLINE_FUNCTION
void operator() (const int i) const {
const int M = U_.dimension_1();
for(int j=0;j<M;++j) {
if( (X_(i,j)>=U_(i,j)-eps_) && G_(i,j) < 0.0 ) {
Y_(i,j) = 0.0;
}
}
}
}; // End struct GradPruneUpperActive
//----------------------------------------------------------------------
//
// Set variables to zero if they correspond to the active set
template<class Real, class V>
struct GradPruneActive {
typedef typename V::execution_space execution_space;
V Y_; // Variable to be pruned
V G_; // Gradient
V X_; // Optimization variable
V L_; // Lower bounds
V U_; // Upper bounds
Real eps_;
GradPruneActive(V &Y, const V &G, const V &X, const V &L, const V &U, Real eps) :
Y_(Y), G_(G), X_(X), L_(L), U_(U), eps_(eps) {}
KOKKOS_INLINE_FUNCTION
void operator() (const int i) const {
const int M = L_.dimension_1();
for(int j=0;j<M;++j) {
if(( X_(i,j)<=L_(i,j)+eps_) && (G_(i,j)>0.0)) {
Y_(i,j) = 0.0;
}
else if(( X_(i,j)>=U_(i,j)-eps_) && (G_(i,j)<0.0) ) {
Y_(i,j) = 0.0;
}
}
}
}; // End struct GradPruneActive
} // End namespace KokkosStructs
//--------------------------------------------------------------------------
template <class Real, class LO, class GO, class Node>
class TpetraBoundConstraint : public BoundConstraint<Real> {
typedef Tpetra::MultiVector<Real,LO,GO,Node> MV;
typedef Teuchos::RCP<MV> MVP;
typedef Teuchos::RCP<const MV> CMVP;
typedef TpetraMultiVector<Real,LO,GO,Node> TMV;
typedef Teuchos::RCP<TMV> TMVP;
typedef typename MV::dual_view_type::t_dev ViewType;
private:
int gblDim_;
int lclDim_;
MVP lp_;
MVP up_;
ViewType l_; // Kokkos view of Lower bounds
ViewType u_; // Kokkos view of Upper bounds
Real min_diff_;
Real scale_;
Teuchos::RCP<const Teuchos::Comm<int> > comm_;
public:
TpetraBoundConstraint(MVP lp, MVP up, Real scale = 1.0) :
gblDim_(lp->getGlobalLength()),
lclDim_(lp->getLocalLength()),
lp_(lp),
up_(up),
l_(lp->getDualView().d_view),
u_(up->getDualView().d_view),
scale_(scale),
comm_(lp->getMap()->getComm()) {
KokkosStructs::MinGap<Real,ViewType> findmin(l_,u_);
Real lclMinGap = 0;
// Reduce for this MPI process
Kokkos::parallel_reduce(lclDim_,findmin,lclMinGap);
Real gblMinGap;
// Reduce over MPI processes
Teuchos::reduceAll<int,Real>(*comm_,Teuchos::REDUCE_MIN,lclMinGap,Teuchos::outArg(gblMinGap));
min_diff_ = 0.5*gblMinGap;
}
bool isFeasible( const Vector<Real> &x ) {
Teuchos::RCP<const MV > xp =
(Teuchos::dyn_cast<TMV>(const_cast<Vector<Real> &>(x))).getVector();
int lclFeasible = 1;
ViewType x_lcl = xp->getDualView().d_view;
KokkosStructs::Feasible<Real,ViewType> check(x_lcl, l_, u_);
Kokkos::parallel_reduce(lclDim_,check,lclFeasible);
Real gblFeasible;
Teuchos::reduceAll<int,Real>(*comm_,Teuchos::REDUCE_MIN,lclFeasible,Teuchos::outArg(gblFeasible));
return gblFeasible == 1 ? true : false;
}
void project( Vector<Real> &x ) {
Teuchos::RCP<MV> xp =
Teuchos::rcp_const_cast<MV>((Teuchos::dyn_cast<TMV>(x)).getVector());
ViewType x_lcl = xp->getDualView().d_view;
KokkosStructs::Project<Real,ViewType> proj(x_lcl,l_,u_);
Kokkos::parallel_for(lclDim_,proj);
}
void pruneLowerActive(Vector<Real> &v, const Vector<Real> &x, Real eps) {
Teuchos::RCP<const MV > xp =
(Teuchos::dyn_cast<TMV>(const_cast<Vector<Real> &>(x))).getVector();
Teuchos::RCP<MV> vp =
Teuchos::rcp_const_cast<MV>((Teuchos::dyn_cast<TMV>(v)).getVector());
Real epsn = std::min(scale_*eps,this->min_diff_);
ViewType x_lcl = xp->getDualView().d_view;
ViewType v_lcl = vp->getDualView().d_view;
KokkosStructs::PruneLowerActive<Real,ViewType> prune(v_lcl,x_lcl,l_,epsn);
Kokkos::parallel_for(lclDim_,prune);
}
void pruneUpperActive(Vector<Real> &v, const Vector<Real> &x, Real eps) {
Teuchos::RCP<const MV > xp =
(Teuchos::dyn_cast<TMV>(const_cast<Vector<Real> &>(x))).getVector();
Teuchos::RCP<MV> vp =
Teuchos::rcp_const_cast<MV>((Teuchos::dyn_cast<TMV>(v)).getVector());
Real epsn = std::min(scale_*eps,this->min_diff_);
ViewType x_lcl = xp->getDualView().d_view;
ViewType v_lcl = vp->getDualView().d_view;
KokkosStructs::PruneUpperActive<Real,ViewType> prune(v_lcl,x_lcl,u_,epsn);
Kokkos::parallel_for(lclDim_,prune);
}
void pruneActive(Vector<Real> &v, const Vector<Real> &x, Real eps) {
Teuchos::RCP<const MV > xp =
(Teuchos::dyn_cast<TMV>(const_cast<Vector<Real> &>(x))).getVector();
Teuchos::RCP<MV> vp =
Teuchos::rcp_const_cast<MV>((Teuchos::dyn_cast<TMV>(v)).getVector());
Real epsn = std::min(scale_*eps,this->min_diff_);
ViewType x_lcl = xp->getDualView().d_view;
ViewType v_lcl = vp->getDualView().d_view;
KokkosStructs::PruneActive<Real,ViewType> prune(v_lcl,x_lcl,l_,u_,epsn);
Kokkos::parallel_for(lclDim_,prune);
}
void pruneLowerActive(Vector<Real> &v, const Vector<Real> &g, const Vector<Real> &x, Real eps) {
Teuchos::RCP<const MV > xp =
(Teuchos::dyn_cast<TMV>(const_cast<Vector<Real> &>(x))).getVector();
Teuchos::RCP<const MV > gp =
(Teuchos::dyn_cast<TMV>(const_cast<Vector<Real> &>(g))).getVector();
Teuchos::RCP<MV> vp =
Teuchos::rcp_const_cast<MV>((Teuchos::dyn_cast<TMV>(v)).getVector());
Real epsn = std::min(scale_*eps,this->min_diff_);
ViewType x_lcl = xp->getDualView().d_view;
ViewType g_lcl = gp->getDualView().d_view;
ViewType v_lcl = vp->getDualView().d_view;
KokkosStructs::GradPruneLowerActive<Real,ViewType> prune(v_lcl,g_lcl,x_lcl,l_,epsn);
Kokkos::parallel_for(lclDim_,prune);
}
void pruneUpperActive(Vector<Real> &v, const Vector<Real> &g, const Vector<Real> &x, Real eps) {
Teuchos::RCP<const MV > xp =
(Teuchos::dyn_cast<TMV>(const_cast<Vector<Real> &>(x))).getVector();
Teuchos::RCP<const MV > gp =
(Teuchos::dyn_cast<TMV>(const_cast<Vector<Real> &>(g))).getVector();
Teuchos::RCP<MV> vp =
Teuchos::rcp_const_cast<MV>((Teuchos::dyn_cast<TMV>(v)).getVector());
Real epsn = std::min(scale_*eps,this->min_diff_);
ViewType x_lcl = xp->getDualView().d_view;
ViewType g_lcl = gp->getDualView().d_view;
ViewType v_lcl = vp->getDualView().d_view;
KokkosStructs::GradPruneUpperActive<Real,ViewType> prune(v_lcl,g_lcl,x_lcl,u_,epsn);
Kokkos::parallel_for(lclDim_,prune);
}
void pruneActive(Vector<Real> &v, const Vector<Real> &g, const Vector<Real> &x, Real eps) {
Teuchos::RCP<const MV > xp =
(Teuchos::dyn_cast<TMV>(const_cast<Vector<Real> &>(x))).getVector();
Teuchos::RCP<const MV > gp =
(Teuchos::dyn_cast<TMV>(const_cast<Vector<Real> &>(g))).getVector();
Teuchos::RCP<MV> vp =
Teuchos::rcp_const_cast<MV>((Teuchos::dyn_cast<TMV>(v)).getVector());
Real epsn = std::min(scale_*eps,this->min_diff_);
ViewType x_lcl = xp->getDualView().d_view;
ViewType g_lcl = gp->getDualView().d_view;
ViewType v_lcl = vp->getDualView().d_view;
KokkosStructs::GradPruneActive<Real,ViewType> prune(v_lcl,g_lcl,x_lcl,l_,u_,epsn);
Kokkos::parallel_for(lclDim_,prune);
}
void setVectorToUpperBound(Vector<Real> &u) {
Teuchos::RCP<MV> up =
Teuchos::rcp_const_cast<MV>((Teuchos::dyn_cast<TMV>(u)).getVector());
up->assign(*up_);
}
void setVectorToLowerBound(Vector<Real> &l) {
Teuchos::RCP<MV> lp =
Teuchos::rcp_const_cast<MV>((Teuchos::dyn_cast<TMV>(l)).getVector());
lp->assign(*lp_);
}
}; // End class TpetraBoundConstraint
} // End ROL Namespace
#endif
|