Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[maint] Update docker ubuntu version to 24.04 #2922

Merged
merged 4 commits into from
Oct 1, 2024
Merged
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
2 changes: 1 addition & 1 deletion cpp/oneapi/dal/algo/knn/detail/distance.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ struct distance_accessor {

template <typename Descriptor>
distance_impl* get_distance_impl(Descriptor&& desc) {
const auto& distance = distance_accessor{}.get_distance_impl(std::forward<Descriptor>(desc));
const auto distance = distance_accessor{}.get_distance_impl(std::forward<Descriptor>(desc));
return distance ? distance->get_impl() : nullptr;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ struct objective_accessor {

template <typename Descriptor>
objective_impl* get_objective_impl(Descriptor&& desc) {
const auto& objective = objective_accessor{}.get_objective_impl(std::forward<Descriptor>(desc));
const auto objective = objective_accessor{}.get_objective_impl(std::forward<Descriptor>(desc));
return objective ? objective->get_impl() : nullptr;
}

Expand Down
2 changes: 1 addition & 1 deletion cpp/oneapi/dal/algo/svm/detail/kernel_function.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ struct kernel_function_accessor {

template <typename Descriptor>
kernel_function_impl* get_kernel_function_impl(Descriptor&& desc) {
const auto& kernel = kernel_function_accessor{}.get_kernel_impl(std::forward<Descriptor>(desc));
const auto kernel = kernel_function_accessor{}.get_kernel_impl(std::forward<Descriptor>(desc));
return kernel ? kernel->get_impl() : nullptr;
}

Expand Down
2 changes: 1 addition & 1 deletion dev/docker/onedal-dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#===============================================================================

FROM ubuntu:22.04@sha256:adbb90115a21969d2fe6fa7f9af4253e16d45f8d4c1e930182610c4731962658
FROM ubuntu:24.04@sha256:77d57fd89366f7d16615794a5b53e124d742404e20f035c22032233f1826bd6a

ARG workdirectory="/sources/oneDAL"
WORKDIR ${workdirectory}
Expand Down
Loading