Skip to content

Commit

Permalink
test script fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Chinthaka Gamanayakege committed Jun 12, 2024
1 parent 1618faf commit 6d548ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion profile_gpt2.cu
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ the profile.ncu-rep from a cloud box to local to pretty view.
#include "train_gpt2.cu"

int main(int argc, char *argv[]) {
multi_gpu_config = multi_gpu_config_init(&argc, &argv);
multi_gpu_config = multi_gpu_config_init(1, 0, 8, ".");
common_start(true, true);

// build the GPT-2 model from a checkpoint
Expand Down
2 changes: 1 addition & 1 deletion test_gpt2.cu
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ float* float_cpu_malloc_and_point_parameters(FloatParameterTensors* params, size
}

int main(int argc, char *argv[]) {
multi_gpu_config = multi_gpu_config_init(&argc, &argv);
multi_gpu_config = multi_gpu_config_init(1, 0, 8, ".");
common_start(false, true);

// set the right paths
Expand Down

0 comments on commit 6d548ab

Please sign in to comment.