| ▼NRTOpPack | |
| CROpGetElement | Returns the value of the element at index global_i |
| CROpGetElementEleWiseReductionOp | |
| CROpGetSubVector | Reduction operator that extracts a sub-vector in the range of global zero-based indexes [l,u] |
| CROpMaxIndex | Returns the maximum element and its index: result.scalar = x(k) and result.index = k such that x(k) >= x(i) for i=0...n-1 and k is the minimum index to break ties |
| CROpMaxIndexEleWiseReductionOp | |
| CROpMaxIndexLessThanBound | Returns the maximum element less than some bound along with its index: result.scalar = x(k) and result.index = k such that x(k) >= x(i) for all i where x(i) < bound and k is the minimum index to break ties |
| CROpMaxIndexLessThanBoundEleWiseReductionOp | |
| CROpMaxIndexReductObjReductionOp | |
| CROpMinIndex | Returns the minimum element and its index: result.scalar = x(k) and result.index = k such that x(k) <= x(i) for i=0...n-1 and k is the minimum index to break ties |
| CROpMinIndexEleWiseReductionOp | |
| CROpMinIndexGreaterThanBound | Returns the minimum element greater than some bound along with its index: result.scalar = x(k) and result.index = k such that x(k) <= x(i) for all i where x(i) > bound and k is the minimum index to break ties |
| CROpMinIndexGreaterThanBoundEleWiseReductionOp | |
| CROpMinIndexReductObjReductionOp | |
| CROpNorm2 | Two (Euclidean) norm reduction operator: result = sqrt( sum( conj(v0[i])*v0[i], i=0...n-1 ) ) |
| CROpNorm2EleWiseReduction | |
| CROpWeightedNorm2 | Weighted Two (Euclidean) norm reduction operator: result = sqrt( sum( v0[i]*conj(v1[i])*v1[i], i=0...n-1 ) ) |
| CROpWeightedNorm2EleWiseReduction | |
| CTOpAddScalar | Add a scalar to a vector transformation operator: z0[i] += alpha, i=0...n-1 |
| CTOpAddScalarEleWiseTransformation | Element-wise transformation operator for TOpAddScalar |
| CTOpAssignScalar | Assign a scalar to a vector transformation operator: z0[i] = alpha, i=0...n-1 |
| CTOpAssignScalarEleWiseTransformation | Element-wise transformation operator for TOpAssignScalar |
| CTOpAXPY | AXPY transformation operator: z0[i] += alpha*v0[i], i=0...n-1 |
| CTOpAXPYEleWiseTransformation | Element-wise transformation operator for TOpAXPY |
| CTOpEleWiseConjProd | Element-wise product transformation operator: z0[i] += alpha*conj(v0[i])*v1[i], i=0...n-1 |
| CTOpEleWiseConjProdEleWiseTransformation | Element-wise transformation operator for TOpEleWiseConjProd |
| CTOpEleWiseDivide | Element-wise division transformation operator: z0[i] += alpha*v0[i]/v1[i], i=0...n-1 |
| CTOpEleWiseDivideEleWiseTransformation | Element-wise transformation operator for TOpEleWiseDivide |
| CTOpEleWiseProd | Element-wise product transformation operator: z0[i] += alpha*v0[i]*v1[i], i=0...n-1 |
| CTOpEleWiseProdEleWiseTransformation | Element-wise transformation operator for TOpEleWiseProd |
| CTOpEleWiseProdUpdate | Element-wise product update transformation operator: z0[i] *= alpha*v0[i], i=0...n-1 |
| CTOpEleWiseProdUpdateEleWiseTransformation | Element-wise transformation operator for TOpEleWiseProdUpdate |
| CTOpEleWiseScale | Element-wise vector scaling: z0[i] *= v0[i], i=0...n-1 |
| CTOpEleWiseScaleEleWiseTransformation | Element-wise vector scaling op for TOpEleWiseScaling |
| CTOpLinearCombination | Linear combination transformation operator: z0[i] = beta*z0[i] |
| CTOpPairWiseMax | Pair-wise Maximum transformation operator: z0[i] = alpha*max(v0[i],v1[i]), i=0...n-1 |
| CTOpPairWiseMaxPairWiseTransformation | Pair-wise transformation operator for TOpPairWiseMax |
| CTOpPairWiseMaxUpdate | Pair-wise Maximum update transformation operator: z0[i] = alpha*max(z0[i],v0[i]), i=0...n-1 |
| CTOpPairWiseMaxUpdatePairWiseTransformation | Pair-wise transformation operator for TOpPairWiseMaxUpdate |
| CTOpRandomize | Generate a random vector in the range [l,u]: z0[i] = 0.5*((u-l)*Teuchos::ScalarTraits<Scalar>::random()+(u+l)), i=0...n-1 |
| CTOpScaleVector | Simple transformation operator that scales every vector element by a scalar alpha |
| CTOpScaleVectorEleWiseTransformation | Element-wise transformation operator for TOpScaleVector |
| CTOpSetAssendingValues | Set the elements of a vector to: z0[i] = i+offset+1, i=0...n-1 |
| CTOpSetAssendingValuesEleWiseTransformation | Element-wise transformation for TOpSetAssendingValues |
| CTOpSetElement | Set the elements of a vector to: z0[i] = i+global_i+1, i=0...n-1 |
| CTOpSetElementEleWiseTransformation | Element-wise transformation for TOpSetElement |
| CTOpSetSubVector | Advanced transformation operator that assigns elements from a sparse explicit vector |