-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CUBLAS wrappers with switchable host/device pointer mode (#453)
Add a few overloads for raft-CUBLAS `gemv`, `gemm`, `axpy` functions to support switching between host and device pointer mode. This allows passing some of the parameters (constants `alpha`, `beta`) as device pointers, which sometimes improves performance. By default, CUBLAS context is created in the host pointer mode. To keep this presumption, the device pointer mode is enabled only for the time of a particular CUBLAS call. This feature is required for rapidsai/cuml#4446. Authors: - Artem M. Chirkin (https://github.com/achirkin) - Corey J. Nolet (https://github.com/cjnolet) Approvers: - Tamas Bela Feher (https://github.com/tfeher) - Corey J. Nolet (https://github.com/cjnolet) URL: #453
- Loading branch information
Showing
4 changed files
with
198 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright (c) 2022, NVIDIA CORPORATION. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <raft/cuda_utils.cuh> | ||
#include <raft/handle.hpp> | ||
#include <raft/linalg/cublas_wrappers.h> | ||
|
||
namespace raft::linalg { | ||
|
||
/** | ||
* @brief the wrapper of cublas axpy function | ||
* It computes the following equation: y = alpha * x + y | ||
* | ||
* @tparam T the element type | ||
* @tparam DevicePointerMode whether pointers alpha, beta point to device memory | ||
* @param [in] handle raft handle | ||
* @param [in] n number of elements in x and y | ||
* @param [in] alpha host or device scalar | ||
* @param [in] x vector of length n | ||
* @param [in] incx stride between consecutive elements of x | ||
* @param [inout] y vector of length n | ||
* @param [in] incy stride between consecutive elements of y | ||
* @param [in] stream | ||
*/ | ||
template <typename T, bool DevicePointerMode = false> | ||
void axpy(const raft::handle_t& handle, | ||
const int n, | ||
const T* alpha, | ||
const T* x, | ||
const int incx, | ||
T* y, | ||
const int incy, | ||
cudaStream_t stream) | ||
{ | ||
auto cublas_h = handle.get_cublas_handle(); | ||
cublas_device_pointer_mode<DevicePointerMode> pmode(cublas_h); | ||
RAFT_CUBLAS_TRY(cublasaxpy(cublas_h, n, alpha, x, incx, y, incy, stream)); | ||
} | ||
|
||
} // namespace raft::linalg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters