Commit e3780e3a authored by wenjh's avatar wenjh
Browse files

Merge branch 'develop_v2.8' into 'main'

Fix build error

See merge request dcutoolkit/deeplearing/TransformerEngine!60
parents a145a62a a622988a
...@@ -1219,15 +1219,6 @@ void nvte_cublas_batchgemm_tensorwise_int8(const NVTETensor A, const NVTETensor ...@@ -1219,15 +1219,6 @@ void nvte_cublas_batchgemm_tensorwise_int8(const NVTETensor A, const NVTETensor
NVTE_ERROR("TT layout not allowed."); NVTE_ERROR("TT layout not allowed.");
} }
hipblasLtHandle_t handle = nullptr;
// Init hipblaslt handles (once, globally)
static std::once_flag init_flag;
static hipblasLtHandle_t hipblaslt_handles[compute_num_streams];
std::call_once(init_flag, init_hipblaslt_handles, hipblaslt_handles);
handle = hipblaslt_handles[0];
NVTE_ERROR("Remove nvte_cublas_batchgemm_tensorwise_int8 for now."); NVTE_ERROR("Remove nvte_cublas_batchgemm_tensorwise_int8 for now.");
} }
......
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