Todd A. Anderson
Todd A. Anderson
Resolves #8225 Generally, dtype kwargs to NumPy functions only have an effect on the typing aspect of Numba and not any runtime ramifications. So, in the parfor code, we can...
Resolves #7578 In parfor fusion, there is a check that something written in one parfor not be used in the second parfor. There was a case in issue #7578 that...
The main landing page (i.e., README) could do with a usage example early on.
Optical flow produces NaNs when you turn on cgen recreateLoops and recreateConds.
``` using ParallelAccelerator ParallelAccelerator.ParallelIR.set_debug_level(3) @acc function score2() exps = 0 @par exps(+) for i in 1:100 exps += i end return exps end score2() ``` This results in: ``` ERROR:...
I just changed CGen to check whether a getfield call has a constant or non-constant as the field parameter (args[2]). If it is a constant, then we can generate the...
In the following code, the input AST has Union return type. This Union type is lost by the end of domain IR. I suspect some LambdaHandling issue and not DomainIR...
Resolves #9379
Add ability to add operand bundles to call sites. Add support for a couple LLVM file system functions.