Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 2, 2025
1 parent 999879e commit 7b868b0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions transformer_engine/common/gemm/cublaslt_gemm.cu
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ class cublasHandleManager {

cublasLtHandle_t GetHandle() {
static thread_local std::once_flag flag;
std::call_once(flag, [&] {
NVTE_CHECK_CUBLAS(cublasLtCreate(&handle_));
});
std::call_once(flag, [&] { NVTE_CHECK_CUBLAS(cublasLtCreate(&handle_)); });
return handle_;
}

Expand Down

0 comments on commit 7b868b0

Please sign in to comment.