| 210 | * On allocation error, the returned pointer is null, and a std::bad_alloc is thrown. |
| 211 | */ |
| 212 | template<bool Align> EIGEN_DEVICE_FUNC inline void* conditional_aligned_malloc(std::size_t size) |
| 213 | { |
| 214 | return aligned_malloc(size); |
| 215 | } |
| 216 | |
| 217 | template<> EIGEN_DEVICE_FUNC inline void* conditional_aligned_malloc<false>(std::size_t size) |
| 218 | { |
nothing calls this directly
no test coverage detected