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