-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README.md, expr2/exprfilter.cpp: add dynamic pixel access support
For example, `x[2,-1]` can be rewritten as `X 2 + Y 1 - x[]` to trade performance for flexibility. Use the `x[]` form only as a last resort as it requires gather load instructions to be efficient (i.e. avx2 on x86). Of course, because we use LLVM, avx2 is not required. Signed-off-by: akarin <[email protected]>
- Loading branch information
Showing
2 changed files
with
47 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters