()
| 1162 | reason="GPU sample neighbors with mask not implemented", |
| 1163 | ) |
| 1164 | def test_sample_neighbors_mask(): |
| 1165 | _test_sample_neighbors(False, "mask", False) |
| 1166 | if F._default_context_str != "gpu" and F.backend_name == "pytorch": |
| 1167 | _test_sample_neighbors(False, "mask", True) |
| 1168 | |
| 1169 | |
| 1170 | @unittest.skipIf( |
no test coverage detected