File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
sycl/source/detail/program_manager Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3393,7 +3393,7 @@ std::optional<sycl::exception> checkDevSupportJointMatrix(
3393
3393
3394
3394
const std::string &MatrixTypeUser = JointMatrixVec[0 ];
3395
3395
const std::string &UseStrUser = JointMatrixVec[1 ];
3396
- size_t RowsUser, ColsUser = 0 ;
3396
+ size_t RowsUser = 0 , ColsUser = 0 ;
3397
3397
try {
3398
3398
RowsUser = std::stoi (JointMatrixVec[2 ]);
3399
3399
ColsUser = std::stoi (JointMatrixVec[3 ]);
@@ -3476,7 +3476,7 @@ std::optional<sycl::exception> checkDevSupportJointMatrixMad(
3476
3476
const std::string &MatrixTypeBStrUser = JointMatrixMadVec[1 ];
3477
3477
const std::string &MatrixTypeCStrUser = JointMatrixMadVec[2 ];
3478
3478
const std::string &MatrixTypeDStrUser = JointMatrixMadVec[3 ];
3479
- size_t MSizeUser, KSizeUser, NSizeUser = 0 ;
3479
+ size_t MSizeUser = 0 , KSizeUser = 0 , NSizeUser = 0 ;
3480
3480
try {
3481
3481
MSizeUser = std::stoi (JointMatrixMadVec[4 ]);
3482
3482
KSizeUser = std::stoi (JointMatrixMadVec[5 ]);
You can’t perform that action at this time.
0 commit comments