From a52458904abfd48594f53d72d1ea9644e22c5333 Mon Sep 17 00:00:00 2001 From: Tobias Ribizel Date: Fri, 14 Feb 2025 14:22:58 +0100 Subject: [PATCH] documentation fix --- include/ginkgo/core/base/precision_dispatch.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ginkgo/core/base/precision_dispatch.hpp b/include/ginkgo/core/base/precision_dispatch.hpp index 29aa4bfcab1..820f8a8e299 100644 --- a/include/ginkgo/core/base/precision_dispatch.hpp +++ b/include/ginkgo/core/base/precision_dispatch.hpp @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2017 - 2024 The Ginkgo authors +// SPDX-FileCopyrightText: 2017 - 2025 The Ginkgo authors // // SPDX-License-Identifier: BSD-3-Clause @@ -87,7 +87,7 @@ void precision_dispatch(Function fn, Args*... linops) * Calls the given function with the given LinOps temporarily converted to * matrix::Dense* as parameters. * If ValueType is real and both input vectors are complex, uses - * matrix::Dense::get_real_view() to convert them into real matrices after + * matrix::Dense::create_real_view() to convert them into real matrices after * precision conversion. * * @see precision_dispatch() @@ -121,7 +121,7 @@ void precision_dispatch_real_complex(Function fn, const LinOp* in, LinOp* out) * Calls the given function with the given LinOps temporarily converted to * matrix::Dense* as parameters. * If ValueType is real and both `in` and `out` are complex, uses - * matrix::Dense::get_real_view() to convert them into real matrices after + * matrix::Dense::create_real_view() to convert them into real matrices after * precision conversion. * * @see precision_dispatch()