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

..--

common/25-Apr-2025-267214

manual/25-Apr-2025-193146

opencl/25-Apr-2025-997616

tensor/25-Apr-2025-4,6673,219

JamfileD25-Apr-20257.3 KiB260245

READMED25-Apr-20251.1 KiB3224

begin_end.cppD25-Apr-20256 KiB182135

comp_mat_erase.cppD25-Apr-20253.6 KiB10763

concepts.cppD25-Apr-20251.1 KiB3518

minimal_allocator_test.cppD25-Apr-20251.1 KiB5236

num_columns.cppD25-Apr-20254.4 KiB11172

num_rows.cppD25-Apr-20254.3 KiB11172

placement_new.cppD25-Apr-20251.6 KiB6436

size.cppD25-Apr-202512.7 KiB276159

sparse_view_test.cppD25-Apr-20253 KiB10754

test1.cppD25-Apr-2025453 217

test1.hppD25-Apr-2025756 3414

test11.cppD25-Apr-20258.6 KiB266201

test12.cppD25-Apr-202511.2 KiB278223

test13.cppD25-Apr-202511.4 KiB326252

test2.cppD25-Apr-20252.2 KiB8860

test2.hppD25-Apr-20251.1 KiB5227

test21.cppD25-Apr-20252.6 KiB9656

test22.cppD25-Apr-20255.2 KiB148110

test23.cppD25-Apr-20259 KiB209175

test3.cppD25-Apr-2025453 217

test3.hppD25-Apr-20251,001 3920

test31.cppD25-Apr-20258.2 KiB249191

test32.cppD25-Apr-202518 KiB355291

test33.cppD25-Apr-202516.5 KiB372294

test4.cppD25-Apr-2025433 206

test4.hppD25-Apr-2025849 4015

test42.cppD25-Apr-202517.8 KiB367307

test43.cppD25-Apr-202511.8 KiB327256

test5.cppD25-Apr-2025433 206

test5.hppD25-Apr-2025809 3614

test52.cppD25-Apr-202510.4 KiB215171

test53.cppD25-Apr-20258.3 KiB224167

test6.cppD25-Apr-2025433 206

test6.hppD25-Apr-2025732 3313

test62.cppD25-Apr-202510.4 KiB219175

test63.cppD25-Apr-20258.1 KiB224169

test7.cppD25-Apr-2025723 3213

test7.hppD25-Apr-2025836 3716

test71.cppD25-Apr-20256 KiB171125

test72.cppD25-Apr-20257.5 KiB166127

test73.cppD25-Apr-20257.7 KiB203153

test_assignment.cppD25-Apr-202529.9 KiB791651

test_banded_storage_layout.cppD25-Apr-20258.1 KiB288212

test_complex_norms.cppD25-Apr-20253.8 KiB12089

test_coordinate_matrix_inplace_merge.cppD25-Apr-20253.6 KiB11993

test_coordinate_matrix_sort.cppD25-Apr-20252.4 KiB7447

test_coordinate_vector_inplace_merge.cppD25-Apr-20253.2 KiB10885

test_fixed_containers.cppD25-Apr-20257.7 KiB326214

test_inplace_solve.cppD25-Apr-20254.1 KiB124100

test_lu.cppD25-Apr-20251.8 KiB7147

test_matrix_vector.cppD25-Apr-202515.6 KiB457342

test_scaled_norm.cppD25-Apr-20251.1 KiB4225

test_ticket7296.cppD25-Apr-202511.3 KiB293205

test_triangular.cppD25-Apr-20254 KiB130111

triangular_access.cppD25-Apr-20255.7 KiB221160

triangular_layout.cppD25-Apr-20253.7 KiB140100

utils.hppD25-Apr-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