• Home
Name Date Size #Lines LOC

..--

common/06-Sep-2024-267214

manual/06-Sep-2024-193146

opencl/06-Sep-2024-997616

tensor/06-Sep-2024-4,6673,219

JamfileD06-Sep-20247.3 KiB260245

READMED06-Sep-20241.1 KiB3224

begin_end.cppD06-Sep-20246 KiB182135

comp_mat_erase.cppD06-Sep-20243.6 KiB10763

concepts.cppD06-Sep-20241.1 KiB3518

minimal_allocator_test.cppD06-Sep-20241.1 KiB5236

num_columns.cppD06-Sep-20244.4 KiB11172

num_rows.cppD06-Sep-20244.3 KiB11172

placement_new.cppD06-Sep-20241.6 KiB6436

size.cppD06-Sep-202412.7 KiB276159

sparse_view_test.cppD06-Sep-20243 KiB10754

test1.cppD06-Sep-2024453 217

test1.hppD06-Sep-2024756 3414

test11.cppD06-Sep-20248.6 KiB266201

test12.cppD06-Sep-202411.2 KiB278223

test13.cppD06-Sep-202411.4 KiB326252

test2.cppD06-Sep-20242.2 KiB8860

test2.hppD06-Sep-20241.1 KiB5227

test21.cppD06-Sep-20242.6 KiB9656

test22.cppD06-Sep-20245.2 KiB148110

test23.cppD06-Sep-20249 KiB209175

test3.cppD06-Sep-2024453 217

test3.hppD06-Sep-20241,001 3920

test31.cppD06-Sep-20248.2 KiB249191

test32.cppD06-Sep-202418 KiB355291

test33.cppD06-Sep-202416.5 KiB372294

test4.cppD06-Sep-2024433 206

test4.hppD06-Sep-2024849 4015

test42.cppD06-Sep-202417.8 KiB367307

test43.cppD06-Sep-202411.8 KiB327256

test5.cppD06-Sep-2024433 206

test5.hppD06-Sep-2024809 3614

test52.cppD06-Sep-202410.4 KiB215171

test53.cppD06-Sep-20248.3 KiB224167

test6.cppD06-Sep-2024433 206

test6.hppD06-Sep-2024732 3313

test62.cppD06-Sep-202410.4 KiB219175

test63.cppD06-Sep-20248.1 KiB224169

test7.cppD06-Sep-2024723 3213

test7.hppD06-Sep-2024836 3716

test71.cppD06-Sep-20246 KiB171125

test72.cppD06-Sep-20247.5 KiB166127

test73.cppD06-Sep-20247.7 KiB203153

test_assignment.cppD06-Sep-202429.9 KiB791651

test_banded_storage_layout.cppD06-Sep-20248.1 KiB288212

test_complex_norms.cppD06-Sep-20243.8 KiB12089

test_coordinate_matrix_inplace_merge.cppD06-Sep-20243.6 KiB11993

test_coordinate_matrix_sort.cppD06-Sep-20242.4 KiB7447

test_coordinate_vector_inplace_merge.cppD06-Sep-20243.2 KiB10885

test_fixed_containers.cppD06-Sep-20247.7 KiB326214

test_inplace_solve.cppD06-Sep-20244.1 KiB124100

test_lu.cppD06-Sep-20241.8 KiB7147

test_matrix_vector.cppD06-Sep-202415.6 KiB457342

test_scaled_norm.cppD06-Sep-20241.1 KiB4225

test_ticket7296.cppD06-Sep-202411.3 KiB293205

test_triangular.cppD06-Sep-20244 KiB130111

triangular_access.cppD06-Sep-20245.7 KiB221160

triangular_layout.cppD06-Sep-20243.7 KiB140100

utils.hppD06-Sep-202418.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