| 18 | return der; |
| 19 | } |
| 20 | static int get_num_threads(size_t rank) |
| 21 | { |
| 22 | int nthreds = 1; |
| 23 | if (rank > 2) |
| 24 | { |
| 25 | #ifdef USE_OPENMP |
| 26 | nthreds = omp_get_max_threads(); |
| 27 | #endif |
| 28 | } |
| 29 | return nthreds; |
| 30 | } |
| 31 | |
| 32 | |
| 33 | CPUComplexTensor::~CPUComplexTensor() |
no outgoing calls
no test coverage detected