Skip to content

Commit

Permalink
Fix: move ci debug up
Browse files Browse the repository at this point in the history
  • Loading branch information
S1ro1 committed Nov 9, 2024
1 parent 2a93c15 commit a58d811
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/train_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,6 @@ jobs:
pip install numpy
# Add other Python dependencies as needed
- name: Install CUDA dependencies
if: inputs.script_type == 'cu'
run: |
sudo apt-get update
sudo apt-get install -y nvidia-cuda-toolkit
nvcc --version
- name: Debug Step
if: inputs.script_type == 'cu'
run: |
Expand All @@ -40,6 +33,14 @@ jobs:
EOL
cat train.${{ inputs.script_type }}
- name: Install CUDA dependencies
if: inputs.script_type == 'cu'
run: |
sudo apt-get update
sudo apt-get install -y nvidia-cuda-toolkit
nvcc --version
- name: Create training script
if : inputs.script_type == 'py' # TODO: remove later
run: |
Expand Down

0 comments on commit a58d811

Please sign in to comment.