Skip to content

Commit

Permalink
fix the bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
mfbalin committed Sep 22, 2024
1 parent 8c70e97 commit a1b7486
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/graphbolt/pyg/multigpu/node_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ def train(args, rank, train_dataloader, valid_dataloader, model, device):
optimizer,
loss_fn,
device,
args.cooperative,
)
val_acc = evaluate(rank, model, valid_dataloader, device)
if rank == 0:
Expand Down Expand Up @@ -379,7 +378,7 @@ def parse_args():
default=1,
help="The number of accesses after which a vertex neighborhood will be cached.",
)
parser.add_argument("--precision", type=str, default="high")
parser.add_argument("--precision", type=str, default="medium")
parser.add_argument(
"--cooperative",
action="store_true",
Expand Down

0 comments on commit a1b7486

Please sign in to comment.