Unverified Commit 03f2caa9 authored by Manan Shah's avatar Manan Shah Committed by GitHub
Browse files

init (#263)

parent 27633e2e
...@@ -224,12 +224,10 @@ hgt_sample_cpu(const c10::Dict<rel_t, torch::Tensor> &colptr_dict, ...@@ -224,12 +224,10 @@ hgt_sample_cpu(const c10::Dict<rel_t, torch::Tensor> &colptr_dict,
} }
} }
} }
if (rows.size() > 0) { out_row_dict.insert(rel_type, from_vector<int64_t>(rows));
out_row_dict.insert(rel_type, from_vector<int64_t>(rows)); out_col_dict.insert(rel_type, from_vector<int64_t>(cols));
out_col_dict.insert(rel_type, from_vector<int64_t>(cols)); out_edge_dict.insert(rel_type, from_vector<int64_t>(edges));
out_edge_dict.insert(rel_type, from_vector<int64_t>(edges)); }
}
}
// Generate tensor-valued output node dictionary (line 20): // Generate tensor-valued output node dictionary (line 20):
for (const auto &kv : nodes_dict) { for (const auto &kv : nodes_dict) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment