(input_data, param_cb, rng)
| 315 | |
| 316 | |
| 317 | def get_input_arg_per_sample(input_data, param_cb, rng): |
| 318 | return [ |
| 319 | [ |
| 320 | param_cb(SampleDesc(rng, None, sample_idx, batch_idx, sample)) |
| 321 | for sample_idx, sample in enumerate(batch) |
| 322 | ] |
| 323 | for batch_idx, batch in enumerate(input_data.data) |
| 324 | ] |
| 325 | |
| 326 | |
| 327 | def get_input_arg_per_frame(input_data: ArgData, param_cb, rng, check_broadcasting): |
no test coverage detected