LCOV - code coverage report
Current view: top level - elsa/storage/transforms - Exp.h (source / functions) Hit Total Coverage
Test: coverage-all.lcov Lines: 3 3 100.0 %
Date: 2024-05-16 04:22:26 Functions: 4 5 80.0 %

          Line data    Source code
       1             : #pragma once
       2             : 
       3             : #include "functions/Exp.hpp"
       4             : 
       5             : #include <thrust/transform.h>
       6             : 
       7             : namespace elsa
       8             : {
       9             :     /// @brief apply the exponentional function for each element in the range
      10             :     /// @ingroup transforms
      11             :     template <class InputIter, class OutIter>
      12             :     void exp(InputIter first, InputIter last, OutIter out)
      13         102 :     {
      14         102 :         thrust::transform(first, last, out, elsa::fn::exp);
      15         102 :     }
      16             : } // namespace elsa

Generated by: LCOV version 1.14