Skip to content

Commit

Permalink
Merge branch '37-fix-gemmex' into 'master'
Browse files Browse the repository at this point in the history
Fix log message for gemmex

See merge request mutsuki/CULiP!39
  • Loading branch information
enp1s0 committed Mar 31, 2022
2 parents 4b4f5e2 + 83aa609 commit 61f0ca1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/cublas.cu
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,12 @@ cublasStatus_t cublasGemmStridedBatchedEx(cublasHandle_t handle,
cublasGetStream(handle, &cuda_stream);

// Profile result structure
snprintf(profile_result.function_name, profile_result.function_name_length - 1, "%s-%s%s-%s-m%d-n%d-k%d-batchCount%d", __func__, CULiP_get_cublasOperation_t_string(transa), CULiP_get_cublasOperation_t_string(transb), CULiP_get_cublasComputeType_t_string(computeType), m, n , k, batchCount);
snprintf(profile_result.function_name, profile_result.function_name_length - 1, "%s-%s%s-%s-%s-%s-%s-m%d-n%d-k%d-batchCount%d", __func__,
CULiP_get_cublasOperation_t_string(transa), CULiP_get_cublasOperation_t_string(transb),
CULiP_get_cublasComputeType_t_string((cublasComputeType_t)Atype),
CULiP_get_cublasComputeType_t_string((cublasComputeType_t)Btype),
CULiP_get_cublasComputeType_t_string((cublasComputeType_t)Ctype),
CULiP_get_cublasComputeType_t_string(computeType), m, n , k, batchCount);

// Record start rimestamp
CULiP_launch_function(cuda_stream, &CULiP_record_timestamp, (void*)&profile_result.start_timestamp);
Expand Down

0 comments on commit 61f0ca1

Please sign in to comment.