(self, N_threads=-1, ssize=LARGE_SIZE)
| 297 | '''Testing with maximum threads and large arrays for parallel operation''' |
| 298 | |
| 299 | def setUp(self, N_threads=-1, ssize=LARGE_SIZE): |
| 300 | if N_threads < 0: |
| 301 | N_threads = ne3.get_ncores() |
| 302 | logger.info( "**Run NumExpr() tests with {} thread(s) over {} element arrays**".format(N_threads, ssize) ) |
| 303 | ne3.set_nthreads(N_threads) |
| 304 | self.ssize = ssize |
| 305 | |
| 306 | class test_evaluate(unittest.TestCase): |
| 307 |
nothing calls this directly
no outgoing calls
no test coverage detected