-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpartition_papers.sh
29 lines (23 loc) · 1.15 KB
/
partition_papers.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh
#SBATCH -N 1
#SBATCH --ntasks-per-node=1
#SBATCH --job-name=graph_partition
#SBATCH --partition=hm
#SBATCH --output=partitions/partition_log_ogbn-papers.txt
source /home/ubuntu/miniconda3/bin/activate
conda activate envforgnn
# module load anaconda3
# module load codes/gpu/cuda/11.6
python3.9 partition_code/partition_default.py \
--dataset ogbn-papers100M \
--num_parts 16 \
--balance_train \
--balance_edges \
--output partitions/ogbn-papers/metis
echo -e "\n\n============================================================================================================================================"
echo -e "============================================================================================================================================\n\n"
python3.9 partition_code/print_all_entropies.py \
--dataset "OGB-Papers" \
--json_metis partitions/ogbn-papers/metis/ogbn-papers100M.json \
--log partitions/partition_log_ogbn-papers.txt \
--no_of_part 16