Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
fix chmod bug (#2689)
Browse files Browse the repository at this point in the history
  • Loading branch information
JunweiSUN authored Jul 16, 2020
1 parent a16db11 commit 8fb8f8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ class RemoteMachineTrainingService implements TrainingService {

// clean up previous result.
await executor.createFolder(remoteGpuScriptCollectorDir, true);
await executor.allowPermission(false, nniRootDir, `${nniRootDir}/*`, `${nniRootDir}/scripts/*`);
await executor.allowPermission(true, nniRootDir);

//Begin to execute gpu_metrics_collection scripts
const script = executor.generateGpuStatsScript(getExperimentId());
Expand Down

0 comments on commit 8fb8f8b

Please sign in to comment.