(upper_bound, fw, device)
| 415 | |
| 416 | |
| 417 | def fw_arange(upper_bound, fw, device): |
| 418 | if fw is numpy: |
| 419 | return fw.arange(upper_bound) |
| 420 | else: |
| 421 | return fw.arange(upper_bound, device=device) |
| 422 | |
| 423 | |
| 424 | def fw_empty(shape, fw, device): |
no outgoing calls
no test coverage detected