Skip to content

Commit e036ebc

Browse files
committed
minor
1 parent ab29874 commit e036ebc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

benchmarking/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
The script offers several command-line arguments to customize the training process:
66
- `--download_path`: Specifies the path to the directory where the dataset is stored.
7-
- `--num_epochs` (optional): Determines the number of training epochs (default is 2).
7+
- `--num_epochs` (optional): Determines the number of training epochs (default is 10).
88
- `--seed` (optional): Allows setting a specific random seed for reproducible experiments.
99
- Other aspects like the number of GCN layers and the hidden dimension size can be modified by adjusting the model definition within the script or by altering the dataset loading within the `get_dataset` function.
1010

1111
**Example Usage:**
1212
```bash
13-
python pyg_serial.py --download_path <path/to/dataset> --num_epochs 10
13+
python pyg_serial.py --download_path <path/to/dataset>
1414
```
1515

1616
- **spmm.py**: This script is designed to test the performance of Sparse Matrix-Matrix Multiplication (SpMM), a fundamental operation in GNN computations. It provides flexibility in configuring the SpMM operation to analyze performance under various conditions.

benchmarking/pyg_serial.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def create_parser():
2626
parser = argparse.ArgumentParser()
2727
parser.add_argument("--seed", type=int, default=0)
2828
parser.add_argument("--download_path", type=str)
29-
parser.add_argument("--num_epochs", type=int, default=2)
29+
parser.add_argument("--num_epochs", type=int, default=10)
3030
return parser
3131

3232

0 commit comments

Comments
 (0)