File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
objective_function/detail Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ struct distance_accessor {
96
96
97
97
template <typename Descriptor>
98
98
distance_impl* get_distance_impl (Descriptor&& desc) {
99
- const auto & distance = distance_accessor{}.get_distance_impl (std::forward<Descriptor>(desc));
99
+ const auto distance = distance_accessor{}.get_distance_impl (std::forward<Descriptor>(desc));
100
100
return distance ? distance->get_impl () : nullptr ;
101
101
}
102
102
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ struct objective_accessor {
71
71
72
72
template <typename Descriptor>
73
73
objective_impl* get_objective_impl (Descriptor&& desc) {
74
- const auto & objective = objective_accessor{}.get_objective_impl (std::forward<Descriptor>(desc));
74
+ const auto objective = objective_accessor{}.get_objective_impl (std::forward<Descriptor>(desc));
75
75
return objective ? objective->get_impl () : nullptr ;
76
76
}
77
77
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ struct kernel_function_accessor {
143
143
144
144
template <typename Descriptor>
145
145
kernel_function_impl* get_kernel_function_impl (Descriptor&& desc) {
146
- const auto & kernel = kernel_function_accessor{}.get_kernel_impl (std::forward<Descriptor>(desc));
146
+ const auto kernel = kernel_function_accessor{}.get_kernel_impl (std::forward<Descriptor>(desc));
147
147
return kernel ? kernel->get_impl () : nullptr ;
148
148
}
149
149
Original file line number Diff line number Diff line change 14
14
# limitations under the License.
15
15
# ===============================================================================
16
16
17
- FROM ubuntu:22 .04@sha256:adbb90115a21969d2fe6fa7f9af4253e16d45f8d4c1e930182610c4731962658
17
+ FROM ubuntu:24 .04@sha256:77d57fd89366f7d16615794a5b53e124d742404e20f035c22032233f1826bd6a
18
18
19
19
ARG workdirectory="/sources/oneDAL"
20
20
WORKDIR ${workdirectory}
You can’t perform that action at this time.
0 commit comments