https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 8437efb4f2a66215b76acc09d0882b0d41bb8427 authored by Dmitry Yu. Naumov on 30 August 2021, 22:13:40 UTC
Merge branch 'TH2M_constantSolidPhaseVolumeFraction' into 'master'
Tip revision: 8437efb
CPUTime.h
/**
 * \file
 * \author Thomas Fischer
 * \author Wenqing Wang
 * \date   2012-05-10, 2014.10.10
 * \brief  Definition of the CPUTime class.
 *
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 */

#pragma once

#include <ctime>

namespace BaseLib
{

/// Count CPU time
class CPUTime
{
    public:
        /// Start the timer.
        void start() { start_time_ = clock(); }

        /// Get the elapsed time after started.
        double elapsed() const
        {
            return (clock() - start_time_) /
                   static_cast<double>(CLOCKS_PER_SEC);
        }
    private:
        double start_time_ = 0.;
};

} // end namespace BaseLib
back to top