ENH: Create the ability for fused operations (fused ufuncs or `map_reduce`) style
See original GitHub issueIt would be nice to have something in NumPy, which would give the largest value by magnitude. IOW abs(a).max()
. However it would be better if it didn’t result in creating a second copy of the data as abs(a)
would do.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:9 (9 by maintainers)
Top Results From Across the Web
interfaces for efficient software composition on modern ...
compiler-style optimizations such as loop fusion, common subexpression elimination, and code generation in programs that combine many such functions.
Read more >Automatic parallelization with @jit - Numba
With auto-parallelization, all operations that produce array of size N are fused together to become a single parallel kernel. This includes the inner...
Read more >Software Modules on the Grace Cluster
'FuSeq is a novel method to discover fusion genes from paired-end RNA sequencing data.' futhark, 'Futhark is a small programming language ...
Read more >Apropos rat - FreeBSD
... library for password database operations in capability mode ... xo_error(3): generate simple error messages in multiple output styles; xo_set_flags(3), ...
Read more >Jacob, Dejice (2020) Opportunistic acceleration of array ...
loop fusion and loop fission allow code optimisation for various parameters like number of ... programming style, perhaps skewed to the scientific domain....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I don’t like that idea of adding ufuncs for a small subset of
op, reduction
. If this is a common enough case, perhaps we should support something likenp.map_reduce
, used as:That seems reasonable to me - anyone is free to create their own gufunc that does these things
How does scikit-learn handle signed integers?