(state_data, a, size, replace, p)
| 821 | |
| 822 | |
| 823 | def _choice_rs(state_data, a, size, replace, p): |
| 824 | state = array_creation_dispatch.RandomState(state_data) |
| 825 | return state.choice(a, size=size, replace=replace, p=p) |
| 826 | |
| 827 | |
| 828 | def _choice_validate_params(state, a, size, replace, p, axis, chunks): |
nothing calls this directly
no test coverage detected