Power function. \param base first argument \param exp second argument \return \a base raised to \a exp template typename enable ::type pow(T base, U exp) { return functions::pow(base, exp); }
| 3216 | // template<typename T,typename U> typename enable<expr,T,U>::type pow(T base, U exp) { return functions::pow(base, |
| 3217 | // exp); } |
| 3218 | inline expr pow(half base, half exp) |
| 3219 | { |
| 3220 | return functions::pow(base, exp); |
| 3221 | } |
| 3222 | inline expr pow(half base, expr exp) |
| 3223 | { |
| 3224 | return functions::pow(base, exp); |