Mingjie Wang
Mingjie Wang
Running into this issue when implementing l2_norm into dpebench: Here is the code: ``` @nb.njit(parallel=False, fastmath=True) def l2_norm(a, d): sq = np.square(a) sum = sq.sum(axis=1) d[:] = np.sqrt(sum) ``` Here...
Following changes are have to be made to enable Game of Life: 1. Not supporting dpnp.sum() `grid_padded[i : i + 3, j : j + 3].sum() ` 2. Not supporting...
This is used to track issues during enabling Mandelbrot test case. - [ ] #1013 - [ ] CFD pass to support function calls inside a dpjit function. - [...