GCC Code Coverage Report


Directory: ./
File: tasks/dilshodov_a_spmm_double_css/common/include/common.hpp
Date: 2026-05-11 08:26:31
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 0 0 -%
Branches: 0 0 -%

Line Branch Exec Source
1 #pragma once
2
3 #include <string>
4 #include <tuple>
5 #include <vector>
6
7 #include "task/include/task.hpp"
8
9 namespace dilshodov_a_spmm_double_css {
10
11 using DenseMatrix = std::vector<std::vector<double>>;
12
13 72 struct SparseMatrixCCS {
14 int rows_count = 0;
15 int cols_count = 0;
16 int non_zeros = 0;
17 std::vector<int> col_ptrs;
18 std::vector<int> row_indices;
19 std::vector<double> values;
20 };
21
22 using InType = std::tuple<SparseMatrixCCS, SparseMatrixCCS>;
23 using OutType = SparseMatrixCCS;
24 using TestType = std::tuple<std::string, DenseMatrix, DenseMatrix>;
25 using BaseTask = ppc::task::Task<InType, OutType>;
26
27 } // namespace dilshodov_a_spmm_double_css
28