• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

common/H03-Dec-2020-267214

manual/H03-Dec-2020-193146

opencl/H03-Dec-2020-997616

tensor/H03-Dec-2020-4,6673,219

JamfileH A D03-Dec-20207.3 KiB260245

READMEH A D03-Dec-20201.1 KiB3224

begin_end.cppH A D03-Dec-20206 KiB182135

comp_mat_erase.cppH A D03-Dec-20203.6 KiB10763

concepts.cppH A D03-Dec-20201.1 KiB3518

minimal_allocator_test.cppH A D03-Dec-20201.1 KiB5236

num_columns.cppH A D03-Dec-20204.4 KiB11172

num_rows.cppH A D03-Dec-20204.3 KiB11172

placement_new.cppH A D03-Dec-20201.6 KiB6436

size.cppH A D03-Dec-202012.7 KiB276159

sparse_view_test.cppH A D03-Dec-20203 KiB10754

test1.cppH A D03-Dec-2020453 217

test1.hppH A D03-Dec-2020756 3414

test11.cppH A D03-Dec-20208.6 KiB266201

test12.cppH A D03-Dec-202011.2 KiB278223

test13.cppH A D03-Dec-202011.4 KiB326252

test2.cppH A D03-Dec-20202.2 KiB8860

test2.hppH A D03-Dec-20201.1 KiB5227

test21.cppH A D03-Dec-20202.6 KiB9656

test22.cppH A D03-Dec-20205.2 KiB148110

test23.cppH A D03-Dec-20209 KiB209175

test3.cppH A D03-Dec-2020453 217

test3.hppH A D03-Dec-20201,001 3920

test31.cppH A D03-Dec-20208.2 KiB249191

test32.cppH A D03-Dec-202018 KiB355291

test33.cppH A D03-Dec-202016.5 KiB372294

test4.cppH A D03-Dec-2020433 206

test4.hppH A D03-Dec-2020849 4015

test42.cppH A D03-Dec-202017.8 KiB367307

test43.cppH A D03-Dec-202011.8 KiB327256

test5.cppH A D03-Dec-2020433 206

test5.hppH A D03-Dec-2020809 3614

test52.cppH A D03-Dec-202010.4 KiB215171

test53.cppH A D03-Dec-20208.3 KiB224167

test6.cppH A D03-Dec-2020433 206

test6.hppH A D03-Dec-2020732 3313

test62.cppH A D03-Dec-202010.4 KiB219175

test63.cppH A D03-Dec-20208.1 KiB224169

test7.cppH A D03-Dec-2020723 3213

test7.hppH A D03-Dec-2020836 3716

test71.cppH A D03-Dec-20206 KiB171125

test72.cppH A D03-Dec-20207.5 KiB166127

test73.cppH A D03-Dec-20207.7 KiB203153

test_assignment.cppH A D03-Dec-202029.9 KiB791651

test_banded_storage_layout.cppH A D03-Dec-20208.1 KiB288212

test_complex_norms.cppH A D03-Dec-20203.8 KiB12089

test_coordinate_matrix_inplace_merge.cppH A D03-Dec-20203.6 KiB11993

test_coordinate_matrix_sort.cppH A D03-Dec-20202.4 KiB7447

test_coordinate_vector_inplace_merge.cppH A D03-Dec-20203.2 KiB10885

test_fixed_containers.cppH A D03-Dec-20207.7 KiB326214

test_inplace_solve.cppH A D03-Dec-20204.1 KiB124100

test_lu.cppH A D03-Dec-20201.8 KiB7147

test_matrix_vector.cppH A D03-Dec-202015.6 KiB457342

test_scaled_norm.cppH A D03-Dec-20201.1 KiB4225

test_ticket7296.cppH A D03-Dec-202011.3 KiB293205

test_triangular.cppH A D03-Dec-20204 KiB130111

triangular_access.cppH A D03-Dec-20205.7 KiB221160

triangular_layout.cppH A D03-Dec-20203.7 KiB140100

utils.hppH A D03-Dec-202018.2 KiB397222

README

1Copyright (c) 2000-2011 Joerg Walter, Mathias Koch, David Bellot
2
3Distributed under the Boost Software License, Version 1.0. (See
4accompanying file LICENSE_1_0.txt or copy at
5http://www.boost.org/LICENSE_1_0.txt)
6
7uBLAS test director
8	Use boost::test to test various uBLAS containers and expressions
9
10The tests can be used individually or automaticaly as part of the uBLAS regression tests.
11
12The tests are broken down in directorys as follows:
13
14test1 - dense vector and matrix tests
15test2 - BLAS tests
16test3 - sparse vector and matrix tests
17test4 - banded/diagonal matrix tests
18test5 - triangular matrix tests
19test6 - symmetric matrix tests
20test7 - dense vector and matrix tests with boost::numeric::internal values
21
22Each test directory contains:
23	testX.hpp	Headers and types to be tested
24	testX.cpp	Call the test functions for the defined types
25	testX1.cpp	Implements vector tests
26	testX2.cpp	Implements vector/matrix tests
27	testX3.cpp	Implements matrix tests
28
29Missing in these tests
30	a) Runtime result validation.
31	b) Iterator interface tests. Only complete container expressions are tested
32