-
-
Notifications
You must be signed in to change notification settings - Fork 72
Description
The following submodules have updated URLs, note the last two for TBB
redirect to the same repository.
old: https://github.com/lemire/FastPFor
new: https://github.com/fast-pack/FastPFOR
old: https://github.com/lemire/streamvbyte
new: https://github.com/fast-pack/streamvbyte
old: https://github.com/lemire/MaskedVByte
new: https://github.com/fast-pack/MaskedVByte
old: https://github.com/lemire/simdcomp
new: https://github.com/fast-pack/simdcomp
old: https://github.com/intel/parallelstl
new: https://github.com/uxlfoundation/oneDPL
old: https://github.com/mandreyel/mio
new: https://github.com/vimpunk/mio
old: https://github.com/01org/tbb
new: https://github.com/uxlfoundation/oneTBB
old: https://github.com/oneapi-src/oneTBB
new: https://github.com/uxlfoundation/oneTBB
For reference, the following script was used to check through the
submodules
$ awk '
/path =/ {path=$3; next}
/url =/ {url=$3; sub(/\.git$/, "", url); flag=1; next}
flag == 1 {print "check: " url; system("curl -s --head " url " | grep ^location"); print ""; flag=0}
END {print "check: " url; system("curl -s --head " url " | grep ^location"); print "";}
' .gitmodules