MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Init

Method Init

tensorflow/stream_executor/rocm/rocm_blas.cc:315–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

313}
314
315bool ROCMBlas::Init() {
316 rocblas_status ret = wrap::rocblas_create_handle(parent_, &blas_);
317 if (ret != rocblas_status_success) {
318 LOG(ERROR) << "failed to create rocBLAS handle: " << ToString(ret);
319 return false;
320 }
321
322 return true;
323}
324
325ROCMBlas::ROCMBlas(gpu::GpuExecutor *parent)
326 : parent_(CHECK_NOTNULL(parent)), blas_(nullptr) {}

Callers 1

initialize_rocblasFunction · 0.45

Calls 1

ToStringFunction · 0.70

Tested by

no test coverage detected