graphlearn_torch/python/data/reorder.py (19 lines of code) (raw):

# Copyright 2022 Alibaba Group Holding Limited. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== import torch def sort_by_in_degree(cpu_tensor, shuffle_ratio, topo): if topo is None: return cpu_tensor, None row_count = topo.row_count assert not (cpu_tensor.size(0) < row_count) new_idx = torch.arange(row_count, dtype=torch.long) perm_range = torch.randperm(int(row_count * shuffle_ratio)) _, old_idx = torch.sort(topo.degrees, descending=True) old2new = torch.arange(cpu_tensor.size(0), dtype=torch.long) old_idx[:int(row_count * shuffle_ratio)] = old_idx[perm_range] tmp_t = cpu_tensor[old_idx] if row_count < cpu_tensor.size(0): cpu_tensor = torch.cat([tmp_t, cpu_tensor[row_count:]], dim=0) else: cpu_tensor = tmp_t old2new[old_idx] = new_idx del new_idx, perm_range, old_idx, tmp_t return cpu_tensor, old2new