Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,22 @@ jobs:
fetch-depth: 0
- name: Run check
run: |
base_regexp_single_date="/Copyright (c) .* PLACEHOLDER/s/ \([0-9]\+\)[-0-9]*/ \\1-$(date +%Y)/"
base_regexp_data_range="/Copyright (c) .* PLACEHOLDER/s/$(date +%Y)-$(date +%Y)/$(date +%Y)/"

regexp_intel_single_date=$(echo "$base_regexp_single_date" | sed 's/PLACEHOLDER/Intel Corporation/')
regexp_intel_data_range=$(echo "$base_regexp_data_range" | sed 's/PLACEHOLDER/Intel Corporation/')
regexp_uxl_single_date=$(echo "$base_regexp_single_date" | sed 's/PLACEHOLDER/UXL Foundation Contributors/')
regexp_uxl_data_range=$(echo "$base_regexp_data_range" | sed 's/PLACEHOLDER/UXL Foundation Contributors/')

echo "$regexp_intel_single_date"
echo "$regexp_intel_data_range"
echo "$regexp_uxl_data_range"
echo "$regexp_uxl_single_date"

sed -i \
-e "/Copyright (c) .* Intel Corporation/s/ \([0-9]\+\)[-0-9]*/ \\1-$(date +%Y)/" \
-e "/Copyright (c) .* Intel Corporation/s/$(date +%Y)-$(date +%Y)/$(date +%Y)/" \
-e "$regexp_intel_single_date" -e "$regexp_intel_data_range" \
-e "$regexp_uxl_single_date" -e "$regexp_uxl_data_range" \
$(git diff --diff-filter=d --name-only ${{ github.event.pull_request.base.sha }})
git checkout -- third-party-programs.txt
git diff > years.diff
Expand Down
2 changes: 2 additions & 0 deletions include/oneapi/tbb/blocked_nd_range.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ namespace tbb {
namespace detail {
namespace d1 {

// Dummy change

/*
The blocked_nd_range_impl uses make_index_sequence<N> to automatically generate a ctor with
exactly N arguments of the type tbb::blocked_range<Value>. Such ctor provides an opportunity
Expand Down
Loading