ddemidov / vexcl
Showing 1 of 1 files from the diff.

@@ -117,7 +117,7 @@
Loading
117 117
            if (ell_width == 0) {
118 118
                csr_nnz = nnz;
119 119
120 -
                csr_ptr = backend::device_vector<Col>(q[0], n + 1,   &ptr[0]);
120 +
                csr_ptr = backend::device_vector<Ptr>(q[0], n + 1,   &ptr[0]);
121 121
                csr_col = backend::device_vector<Col>(q[0], csr_nnz, &col[0]);
122 122
                csr_val = backend::device_vector<Val>(q[0], csr_nnz, &val[0]);
123 123
@@ -170,7 +170,7 @@
Loading
170 170
            ell_val = backend::device_vector<Val>(q[0], ell_pitch * ell_width, _ell_val.data());
171 171
172 172
            if (csr_nnz) {
173 -
                csr_ptr = backend::device_vector<Col>(q[0], n + 1,   _csr_ptr.data());
173 +
                csr_ptr = backend::device_vector<Ptr>(q[0], n + 1,   _csr_ptr.data());
174 174
                csr_col = backend::device_vector<Col>(q[0], csr_nnz, _csr_col.data());
175 175
                csr_val = backend::device_vector<Val>(q[0], csr_nnz, _csr_val.data());
176 176
            }
Files Coverage
examples 5.37%
tests 99.69%
vexcl 94.30%
CL/cl.hpp 84.27%
Project Totals (122 files) 90.87%
1436.1
TRAVIS_OS_NAME=linux
1436.3
TRAVIS_OS_NAME=linux
1436.9
TRAVIS_OS_NAME=osx
1436.7
TRAVIS_OS_NAME=osx
1437.7
TRAVIS_OS_NAME=osx
1437.9
TRAVIS_OS_NAME=osx
1438.9
TRAVIS_OS_NAME=osx
1438.7
TRAVIS_OS_NAME=osx

No yaml found.

Create your codecov.yml to customize your Codecov experience

Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file. The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files. The size and color of each slice is representing the number of statements and the coverage, respectively.
Grid
Each block represents a single file in the project. The size and color of each block is represented by the number of statements and the coverage, respectively.
Loading