⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 blockedvect.cc

📁 大型并行量子化学软件;支持密度泛函(DFT)。可以进行各种量子化学计算。支持CHARMM并行计算。非常具有应用价值。
💻 CC
字号:
//// blockedvect.cc//// Copyright (C) 1996 Limit Point Systems, Inc.//// Author: Curtis Janssen <cljanss@limitpt.com>// Maintainer: LPS//// This file is part of the SC Toolkit.//// The SC Toolkit is free software; you can redistribute it and/or modify// it under the terms of the GNU Library General Public License as published by// the Free Software Foundation; either version 2, or (at your option)// any later version.//// The SC Toolkit 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 Library General Public License for more details.//// You should have received a copy of the GNU Library General Public License// along with the SC Toolkit; see the file COPYING.LIB.  If not, write to// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.//// The U.S. Government is granted a limited license as per AL 91-7.//#include <math.h>#include <util/misc/formio.h>#include <util/keyval/keyval.h>#include <util/state/stateio.h>#include <math/scmat/blocked.h>#include <math/scmat/cmatrix.h>#include <math/scmat/elemop.h>using namespace std;using namespace sc;/////////////////////////////////////////////////////////////////////////////// BlockedSCVector member functionsstatic ClassDesc BlockedSCVector_cd(  typeid(BlockedSCVector),"BlockedSCVector",1,"public SCVector",  0, 0, 0);voidBlockedSCVector::resize(SCDimension *bsd){  if (vecs_) {    delete[] vecs_;    vecs_=0;  }  d = bsd;    if (!bsd || !bsd->blocks()->nblock())    return;    vecs_ = new RefSCVector[d->blocks()->nblock()];  for (int i=0; i < d->blocks()->nblock(); i++)    if (d->blocks()->size(i))      vecs_[i] = subkit->vector(d->blocks()->subdim(i));}BlockedSCVector::BlockedSCVector(const RefSCDimension&a,                                 BlockedSCMatrixKit*k):  SCVector(a,k),  subkit(k->subkit()),  vecs_(0){  resize(a);}BlockedSCVector::~BlockedSCVector(){  if (vecs_) {    delete[] vecs_;    vecs_=0;  }}voidBlockedSCVector::assign_val(double a){  for (int i=0; i < d->blocks()->nblock(); i++)    if (vecs_[i].nonnull())      vecs_[i]->assign(a);}voidBlockedSCVector::assign_v(SCVector*a){  // make sure that the argument is of the correct type  BlockedSCVector* la    = require_dynamic_cast<BlockedSCVector*>(a,"BlockedSCVector::assign");  // make sure that the dimensions match  if (!dim()->equiv(la->dim())) {    ExEnv::errn() << indent << "BlockedSCVector::assign(SCVector*a): "         << "dimensions don't match\n";    abort();  }  for (int i=0; i < d->blocks()->nblock(); i++)    if (vecs_[i].nonnull())      vecs_[i]->assign(la->vecs_[i]);}voidBlockedSCVector::assign_p(const double*a){  for (int i=0; i < d->blocks()->nblock(); i++)    if (vecs_[i].nonnull())      vecs_[i]->assign(a+d->blocks()->start(i));}doubleBlockedSCVector::get_element(int i) const{  int size = d->n();  if (i < 0 || i >= size) {    ExEnv::errn() << indent << "BlockedSCVector::get_element: bad index\n";    abort();  }  int bi, bo;  d->blocks()->elem_to_block(i,bi,bo);  return vecs_[bi].get_element(bo);}voidBlockedSCVector::set_element(int i,double a){  int size = d->n();  if (i < 0 || i >= size) {    ExEnv::errn() << indent << "BlockedSCVector::set_element: bad index\n";    abort();  }  int bi, bo;  d->blocks()->elem_to_block(i,bi,bo);  vecs_[bi].set_element(bo,a);}voidBlockedSCVector::accumulate_element(int i,double a){  int size = d->n();  if (i < 0 || i >= size) {    ExEnv::errn() << indent << "BlockedSCVector::accumulate_element: bad index\n";    abort();  }  int bi, bo;  d->blocks()->elem_to_block(i,bi,bo);  vecs_[bi].accumulate_element(bo,a);}voidBlockedSCVector::accumulate_product_rv(SCMatrix*a,SCVector*b){  const char* name = "BlockedSCVector::accumulate_product";  // make sure that the arguments are of the correct type  BlockedSCMatrix* la = require_dynamic_cast<BlockedSCMatrix*>(a,name);  BlockedSCVector* lb = require_dynamic_cast<BlockedSCVector*>(b,name);  // make sure that the dimensions match  if (!dim()->equiv(la->rowdim()) || !la->coldim()->equiv(lb->dim())) {    ExEnv::errn() << indent         << "BlockedSCVector::accumulate_product_rv(SCMatrix*a,SCVector*b): "         << "dimensions don't match\n";    abort();  }  for (int i=0; i < d->blocks()->nblock(); i++)    if (vecs_[i].nonnull())      vecs_[i]->accumulate_product(la->mats_[i], lb->vecs_[i]);}voidBlockedSCVector::accumulate_product_sv(SymmSCMatrix*a,SCVector*b){  const char* name = "BlockedSCVector::accumulate_product";  // make sure that the arguments are of the correct type  BlockedSymmSCMatrix* la = require_dynamic_cast<BlockedSymmSCMatrix*>(a,name);  BlockedSCVector* lb = require_dynamic_cast<BlockedSCVector*>(b,name);  // make sure that the dimensions match  if (!dim()->equiv(la->dim()) || !la->dim()->equiv(lb->dim())) {    ExEnv::errn() << indent         << "BlockedSCVector::accumulate_product_sv(SymmSCMatrix*a,SCVector*b): "         << "dimensions don't match\n";    abort();  }  for (int i=0; i < d->blocks()->nblock(); i++)    if (vecs_[i].nonnull())      vecs_[i]->accumulate_product(la->mats_[i], lb->vecs_[i]);}voidBlockedSCVector::accumulate(const SCVector*a){  // make sure that the argument is of the correct type  const BlockedSCVector* la    = require_dynamic_cast<const BlockedSCVector*>(a,"BlockedSCVector::accumulate");  // make sure that the dimensions match  if (!dim()->equiv(la->dim())) {    ExEnv::errn() << indent << "BlockedSCVector::accumulate(SCVector*a): "         << "dimensions don't match\n";    abort();  }  for (int i=0; i < d->blocks()->nblock(); i++)    if (vecs_[i].nonnull())      vecs_[i]->accumulate(la->vecs_[i]);}voidBlockedSCVector::accumulate(const SCMatrix*a){  // make sure that the argument is of the correct type  const BlockedSCMatrix* la    = require_dynamic_cast<const BlockedSCMatrix*>(a,"BlockedSCVector::accumulate");  // make sure that the dimensions match  if (!((la->rowdim()->equiv(dim()) && la->coldim()->n() == 1)        || (la->coldim()->equiv(dim()) && la->rowdim()->n() == 1))) {    ExEnv::errn() << indent << "BlockedSCVector::accumulate(SCMatrix*a): "         << "dimensions don't match\n";    abort();  }  for (int i=0; i < d->blocks()->nblock(); i++)    if (vecs_[i].nonnull())      vecs_[i]->accumulate(la->mats_[i]);}doubleBlockedSCVector::scalar_product(SCVector*a){  // make sure that the argument is of the correct type  BlockedSCVector* la    = require_dynamic_cast<BlockedSCVector*>(a,"BlockedSCVector::scalar_product");  // make sure that the dimensions match  if (!dim()->equiv(la->dim())) {    ExEnv::errn() << indent << "BlockedSCVector::scale_product(SCVector*a): "         << "dimensions don't match\n";    abort();  }  double result=0;  for (int i=0; i < d->blocks()->nblock(); i++)    if (vecs_[i].nonnull())      result += vecs_[i]->scalar_product(la->vecs_[i]);    return result;}voidBlockedSCVector::element_op(const Ref<SCElementOp>& op){  BlockedSCElementOp *bop = dynamic_cast<BlockedSCElementOp*>(op.pointer());  int nb = d->blocks()->nblock();    op->defer_collect(1);  for (int i=0; i < nb; i++) {    if (bop)      bop->working_on(i);    if (vecs_[i].nonnull())      vecs_[i]->element_op(op);  }  op->defer_collect(0);  if (op->has_collect()) op->collect(messagegrp());}voidBlockedSCVector::element_op(const Ref<SCElementOp2>& op,                          SCVector* m){  BlockedSCVector *lm      = require_dynamic_cast<BlockedSCVector*>(m, "BlockedSCVector::element_op");  if (!dim()->equiv(lm->dim())) {    ExEnv::errn() << indent << "BlockedSCVector: bad element_op\n";    abort();  }  BlockedSCElementOp2 *bop = dynamic_cast<BlockedSCElementOp2*>(op.pointer());  int nb = d->blocks()->nblock();    op->defer_collect(1);  for (int i=0; i < nb; i++) {    if (bop)      bop->working_on(i);    if (vecs_[i].nonnull())      vecs_[i]->element_op(op, lm->vecs_[i]);  }  op->defer_collect(0);  if (op->has_collect()) op->collect(messagegrp());}voidBlockedSCVector::element_op(const Ref<SCElementOp3>& op,                          SCVector* m,SCVector* n){  BlockedSCVector *lm      = require_dynamic_cast<BlockedSCVector*>(m, "BlockedSCVector::element_op");  BlockedSCVector *ln      = require_dynamic_cast<BlockedSCVector*>(n, "BlockedSCVector::element_op");  if (!dim()->equiv(lm->dim()) || !dim()->equiv(ln->dim())) {    ExEnv::errn() << indent << "BlockedSCVector: bad element_op\n";    abort();  }  BlockedSCElementOp3 *bop = dynamic_cast<BlockedSCElementOp3*>(op.pointer());  int nb = d->blocks()->nblock();    op->defer_collect(1);  for (int i=0; i < nb; i++) {    if (bop)      bop->working_on(i);    if (vecs_[i].nonnull())      vecs_[i]->element_op(op, lm->vecs_[i], ln->vecs_[i]);  }  op->defer_collect(0);  if (op->has_collect()) op->collect(messagegrp());}voidBlockedSCVector::vprint(const char *title, ostream& os, int prec) const{  int len = (title) ? strlen(title) : 0;  char *newtitle = new char[len + 80];  for (int i=0; i < d->blocks()->nblock(); i++) {    if (vecs_[i].null())      continue;        sprintf(newtitle,"%s:  block %d",title,i+1);    vecs_[i]->print(newtitle, os, prec);  }  delete[] newtitle;}RefSCDimensionBlockedSCVector::dim(int i) const{  return d->blocks()->subdim(i);}intBlockedSCVector::nblocks() const{  return d->blocks()->nblock();}RefSCVectorBlockedSCVector::block(int i){  return vecs_[i];}Ref<SCMatrixSubblockIter>BlockedSCVector::local_blocks(SCMatrixSubblockIter::Access access){  Ref<SCMatrixCompositeSubblockIter> iter      = new SCMatrixCompositeSubblockIter(access,nblocks());  for (int i=0; i<nblocks(); i++) {      if (block(i).null())          iter->set_iter(i, new SCMatrixNullSubblockIter(access));      else          iter->set_iter(i, block(i)->local_blocks(access));    }  Ref<SCMatrixSubblockIter> ret = iter.pointer();  return ret;}Ref<SCMatrixSubblockIter>BlockedSCVector::all_blocks(SCMatrixSubblockIter::Access access){  Ref<SCMatrixCompositeSubblockIter> iter      = new SCMatrixCompositeSubblockIter(access,nblocks());  for (int i=0; i<nblocks(); i++) {      if (block(i).null())          iter->set_iter(i, new SCMatrixNullSubblockIter(access));      else          iter->set_iter(i, block(i)->all_blocks(access));    }  Ref<SCMatrixSubblockIter> ret = iter.pointer();  return ret;}voidBlockedSCVector::save(StateOut&s){  int ndim = n();  s.put(ndim);  int has_subblocks = 1;  s.put(has_subblocks);  s.put(nblocks());  for (int i=0; i<nblocks(); i++) {      block(i).save(s);    }}voidBlockedSCVector::restore(StateIn&s){  int ndimt, ndim = n();  s.get(ndimt);  if (ndimt != ndim) {      ExEnv::errn() << indent << "BlockedSCVector::restore(): bad dimension" << endl;      abort();    }  int has_subblocks;  s.get(has_subblocks);  if (has_subblocks) {      int nblock;      s.get(nblock);      if (nblock != nblocks()) {          ExEnv::errn() << indent               << "BlockedSCVector::restore(): nblock differs\n" << endl;          abort();        }      for (int i=0; i<nblocks(); i++) {          block(i).restore(s);        }    }  else {      ExEnv::errn() << indent           << "BlockedSCVector::restore(): no subblocks--cannot restore"           << endl;      abort();    }}/////////////////////////////////////////////////////////////////////////////// Local Variables:// mode: c++// c-file-style: "CLJ"// End:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -