13#ifndef TEUCHOS_FLOPS_HPP
14#define TEUCHOS_FLOPS_HPP
64 double flops()
const {
return flops_; }
80 mutable double flops_;
85 void updateFlops(
int addflops)
const {flops_ += (double) addflops; }
88 void updateFlops(
long int addflops)
const {flops_ += (double) addflops; }
91 void updateFlops(
double addflops)
const {flops_ += (double) addflops; }
94 void updateFlops(
float addflops)
const {flops_ += (double) addflops; }
Functionality and data that is common to all computational classes.
virtual ~Flops()
Destructor.
double flops() const
Returns the number of floating point operations with this object and resets the count.
Flops()
Default Constructor.
void updateFlops(int addflops) const
Increment Flop count for this object from an int.
void updateFlops(long int addflops) const
Increment Flop count for this object from a long int.
void updateFlops(float addflops) const
Increment Flop count for this object from a float.
void updateFlops(double addflops) const
Increment Flop count for this object from a double.
void resetFlops()
Resets the number of floating point operations to zero for this multi-stdvector.
The Teuchos namespace contains all of the classes, structs and enums used by Teuchos,...