Automatic Differentiation
 
Loading...
Searching...
No Matches

◆ ARENA_MATRIX_CL_CONST_FUNCTION_WRAPPER

#define ARENA_MATRIX_CL_CONST_FUNCTION_WRAPPER (   function_name)
Value:
template <typename... Args> \
inline decltype(auto) function_name(Args&&... args) const { \
return impl_->function_name(std::forward<Args>(args)...); \
}

Implements a wrapper for a const function in matrix_cl.

Parameters
function_namename of the function to wrap

Definition at line 118 of file arena_matrix_cl.hpp.