Skip to content

Commit

Permalink
Merge branch 'oneapi-src:main' into dev/asolovev_onemkl_enabling_clear
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandr-Solovev committed Sep 5, 2024
2 parents 5217992 + a637ba2 commit a0abb27
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 16 deletions.
19 changes: 11 additions & 8 deletions .ci/env/apt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,19 @@ function install_qemu_emulation_deb {
set +e

versions=(9.0.2 9.0.1 8.2.4)
suffixes=("" "~bpo12+1")
found_version=""
for version in ${versions[@]}; do
qemu_deb="qemu-user-static_${version}+ds-1_amd64.deb"
echo "Checking for http://ftp.debian.org/debian/pool/main/q/qemu/${qemu_deb}"
if wget -q --method=HEAD http://ftp.debian.org/debian/pool/main/q/qemu/${qemu_deb} &> /dev/null;
then
echo "Found qemu version ${version}"
found_version=${qemu_deb}
break
fi
for suffix in ${suffixes[@]}; do
qemu_deb="qemu-user-static_${version}+ds-1${suffix}_amd64.deb"
echo "Checking for http://ftp.debian.org/debian/pool/main/q/qemu/${qemu_deb}"
if wget -q --method=HEAD http://ftp.debian.org/debian/pool/main/q/qemu/${qemu_deb} &> /dev/null;
then
echo "Found qemu version ${version}"
found_version=${qemu_deb}
break 2
fi
done
done

set -eo pipefail
Expand Down
2 changes: 1 addition & 1 deletion deploy/pkg-config/pkg-config.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ includedir=${{prefix}}/include
#info
Name: oneDAL
Description: Intel(R) oneAPI Data Analytics Library
Version: 2024.7
Version: 2025.0
URL: https://www.intel.com/content/www/us/en/developer/tools/oneapi/onedal.html
#Link line
Libs: {libs}
Expand Down
4 changes: 2 additions & 2 deletions dev/bazel/config/config.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ def _declare_onedal_config_impl(repo_ctx):
Label("@onedal//dev/bazel/config:config.tpl.BUILD"),
substitutions = {
"%{auto_cpu}": auto_cpu,
"%{version_major}": "2024",
"%{version_minor}": "7",
"%{version_major}": "2025",
"%{version_minor}": "0",
"%{version_update}": "0",
"%{version_build}": utils.datestamp(repo_ctx),
"%{version_buildrev}": "work",
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/doxygen_conf_cpp.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "C++ API Reference for Intel(R) oneAPI Data Analytics L
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "2024.7"
PROJECT_NUMBER = "2025.0"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/doxygen_conf_cpp_examples.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "C++ API Reference for Intel(R) oneAPI Data Analytics L
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "2024.7"
PROJECT_NUMBER = "2025.0"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/doxygen_conf_cpp_web.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "C++ API Reference for Intel(R) oneAPI Data Analytics L
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "2024.7"
PROJECT_NUMBER = "2025.0"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 2 additions & 2 deletions makefile.ver
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# limitations under the License.
#===============================================================================

MAJOR = 2024
MINOR = 7
MAJOR = 2025
MINOR = 0
UPDATE = 0
BUILD = $(shell date +'%Y%m%d')
STATUS = P
Expand Down

0 comments on commit a0abb27

Please sign in to comment.