Skip to content

Commit

Permalink
Merge pull request #612 from daineAMD/release-staging/rocm-rel-5.7
Browse files Browse the repository at this point in the history
Cuda 12 Hotfix
  • Loading branch information
daineAMD authored Jun 7, 2023
2 parents 354bf0a + aadde8a commit bb3e793
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions library/src/nvidia_detail/hipblas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

#include "hipblas.h"
#include "exceptions.hpp"
#include <cublas.h>
#include <cublas_v2.h>
#include <cuda_runtime_api.h>
#include <hip/hip_runtime.h>
Expand Down Expand Up @@ -350,7 +349,7 @@ hipblasStatus_t hipblasGetPointerMode(hipblasHandle_t handle, hipblasPointerMode
try
{
cublasPointerMode_t cublasMode;
cublasStatus status = cublasGetPointerMode((cublasHandle_t)handle, &cublasMode);
cublasStatus_t status = cublasGetPointerMode((cublasHandle_t)handle, &cublasMode);
*mode = CudaPointerModeToHIPPointerMode(cublasMode);
return hipCUBLASStatusToHIPStatus(status);
}
Expand Down

0 comments on commit bb3e793

Please sign in to comment.