• Home
Name Date Size #Lines LOC

..--

common/04-Jul-2025-267214

manual/04-Jul-2025-193146

opencl/04-Jul-2025-997616

tensor/04-Jul-2025-4,6673,219

JamfileD04-Jul-20257.3 KiB260245

READMED04-Jul-20251.1 KiB3224

begin_end.cppD04-Jul-20256 KiB182135

comp_mat_erase.cppD04-Jul-20253.6 KiB10763

concepts.cppD04-Jul-20251.1 KiB3518

minimal_allocator_test.cppD04-Jul-20251.1 KiB5236

num_columns.cppD04-Jul-20254.4 KiB11172

num_rows.cppD04-Jul-20254.3 KiB11172

placement_new.cppD04-Jul-20251.6 KiB6436

size.cppD04-Jul-202512.7 KiB276159

sparse_view_test.cppD04-Jul-20253 KiB10754

test1.cppD04-Jul-2025453 217

test1.hppD04-Jul-2025756 3414

test11.cppD04-Jul-20258.6 KiB266201

test12.cppD04-Jul-202511.2 KiB278223

test13.cppD04-Jul-202511.4 KiB326252

test2.cppD04-Jul-20252.2 KiB8860

test2.hppD04-Jul-20251.1 KiB5227

test21.cppD04-Jul-20252.6 KiB9656

test22.cppD04-Jul-20255.2 KiB148110

test23.cppD04-Jul-20259 KiB209175

test3.cppD04-Jul-2025453 217

test3.hppD04-Jul-20251,001 3920

test31.cppD04-Jul-20258.2 KiB249191

test32.cppD04-Jul-202518 KiB355291

test33.cppD04-Jul-202516.5 KiB372294

test4.cppD04-Jul-2025433 206

test4.hppD04-Jul-2025849 4015

test42.cppD04-Jul-202517.8 KiB367307

test43.cppD04-Jul-202511.8 KiB327256

test5.cppD04-Jul-2025433 206

test5.hppD04-Jul-2025809 3614

test52.cppD04-Jul-202510.4 KiB215171

test53.cppD04-Jul-20258.3 KiB224167

test6.cppD04-Jul-2025433 206

test6.hppD04-Jul-2025732 3313

test62.cppD04-Jul-202510.4 KiB219175

test63.cppD04-Jul-20258.1 KiB224169

test7.cppD04-Jul-2025723 3213

test7.hppD04-Jul-2025836 3716

test71.cppD04-Jul-20256 KiB171125

test72.cppD04-Jul-20257.5 KiB166127

test73.cppD04-Jul-20257.7 KiB203153

test_assignment.cppD04-Jul-202529.9 KiB791651

test_banded_storage_layout.cppD04-Jul-20258.1 KiB288212

test_complex_norms.cppD04-Jul-20253.8 KiB12089

test_coordinate_matrix_inplace_merge.cppD04-Jul-20253.6 KiB11993

test_coordinate_matrix_sort.cppD04-Jul-20252.4 KiB7447

test_coordinate_vector_inplace_merge.cppD04-Jul-20253.2 KiB10885

test_fixed_containers.cppD04-Jul-20257.7 KiB326214

test_inplace_solve.cppD04-Jul-20254.1 KiB124100

test_lu.cppD04-Jul-20251.8 KiB7147

test_matrix_vector.cppD04-Jul-202515.6 KiB457342

test_scaled_norm.cppD04-Jul-20251.1 KiB4225

test_ticket7296.cppD04-Jul-202511.3 KiB293205

test_triangular.cppD04-Jul-20254 KiB130111

triangular_access.cppD04-Jul-20255.7 KiB221160

triangular_layout.cppD04-Jul-20253.7 KiB140100

utils.hppD04-Jul-202518.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