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