本文整理汇总了C++中LocalVector::get_size方法的典型用法代码示例。如果您正苦于以下问题:C++ LocalVector::get_size方法的具体用法?C++ LocalVector::get_size怎么用?C++ LocalVector::get_size使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LocalVector
的用法示例。
在下文中一共展示了LocalVector::get_size方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: assert
void LocalVector<ValueType>::PointWiseMult(const LocalVector<ValueType> &x, const LocalVector<ValueType> &y) {
LOG_DEBUG(this, "LocalVector::(x, y)",
"");
assert(this->get_size() == x.get_size());
assert(this->get_size() == y.get_size());
assert( ( (this->vector_ == this->vector_host_) && (x.vector_ == x.vector_host_) && (y.vector_ == y.vector_host_)) ||
( (this->vector_ == this->vector_accel_) && (x.vector_ == x.vector_accel_) && (y.vector_ == y.vector_accel_)) );
if (this->get_size() > 0 ) {
this->vector_->PointWiseMult(*x.vector_, *y.vector_);
}
}
示例2: ValueType
ValueType LocalVector<ValueType>::DotNonConj(const LocalVector<ValueType> &x) const {
LOG_DEBUG(this, "LocalVector::DotNonConj()",
"");
assert(this->get_size() == x.get_size());
assert( ( (this->vector_ == this->vector_host_) && (x.vector_ == x.vector_host_)) ||
( (this->vector_ == this->vector_accel_) && (x.vector_ == x.vector_accel_)) );
if (this->get_size() > 0 ) {
return this->vector_->DotNonConj(*x.vector_);
} else {
return ValueType(0.0);
}
}