(session_kind, ccl)
| 50 | @pytest.mark.parametrize("session_kind", _all_session_kinds) |
| 51 | @pytest.mark.parametrize("ccl", _ccl) |
| 52 | def test_init(session_kind, ccl): |
| 53 | devices = [0, 1] |
| 54 | sess = session_kind(num_workers=len(devices)) |
| 55 | sess.init_ccl(ccl, *devices) |
| 56 | |
| 57 | |
| 58 | @pytest.mark.parametrize("session_kind", _all_session_kinds) |
nothing calls this directly
no test coverage detected
searching dependent graphs…