A simple wrapper around ``getter``. Used to indicate to the optimization passes that the backend doesn't support fancy indexing.
(a, b, asarray=True, lock=None)
| 145 | |
| 146 | |
| 147 | def getter_nofancy(a, b, asarray=True, lock=None): |
| 148 | """A simple wrapper around ``getter``. |
| 149 | |
| 150 | Used to indicate to the optimization passes that the backend doesn't |
| 151 | support fancy indexing. |
| 152 | """ |
| 153 | return getter(a, b, asarray=asarray, lock=lock) |
| 154 | |
| 155 | |
| 156 | def getter_inline(a, b, asarray=True, lock=None): |
nothing calls this directly
no test coverage detected
searching dependent graphs…