Commit 50e099ee authored by fenglei.tian's avatar fenglei.tian

remove std::cout

parent cfe16627
...@@ -33,7 +33,6 @@ runtime::gpu::GPU_CallFrame::GPU_CallFrame(std::shared_ptr<GPU_ExternalFunction> ...@@ -33,7 +33,6 @@ runtime::gpu::GPU_CallFrame::GPU_CallFrame(std::shared_ptr<GPU_ExternalFunction>
cublasStatus_t cublasStatus = cublasCreate(&m_cublas_handle); cublasStatus_t cublasStatus = cublasCreate(&m_cublas_handle);
if (cublasStatus != CUBLAS_STATUS_SUCCESS) if (cublasStatus != CUBLAS_STATUS_SUCCESS)
{ {
std::cout << "error : " << (int)cublasStatus << std::endl;
throw runtime_error("cuBLAS create handle failed"); throw runtime_error("cuBLAS create handle failed");
} }
cudnnStatus_t cudnnStatus = cudnnCreate(&m_cudnn_handle); cudnnStatus_t cudnnStatus = cudnnCreate(&m_cudnn_handle);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment