Skip to content

Commit

Permalink
Test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gha3mi committed Jan 23, 2024
1 parent c62c785 commit 0a5a682
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/CI_benchmark_dot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,4 +277,7 @@ jobs:
- name: Create Pull Request
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh pr create -B "${{ github.event.repository.default_branch }}" -H "results" --title "Update results" --body "Update results"
run: |
git checkout "${{ github.event.repository.default_branch }}"
git merge --squash results
gh pr create -B "${{ github.event.repository.default_branch }}" -H "results" --title "Update results" --body "Update dot_product benchmark results"
2 changes: 1 addition & 1 deletion benchmarks/dot/dot.f90
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ program benchmark_dot

call random_seed(size = seed_size)
allocate(seed_array(seed_size))
seed_array = 123456789
seed_array = 132456789

call bench%init(7,'Benchmark dot_product','benchmarks/dot/results/dot', 5000)

Expand Down

0 comments on commit 0a5a682

Please sign in to comment.