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

..03-May-2022-

array/H03-May-2022-17,94113,031

generate/H03-May-2022-6,3825,160

meta/H03-May-2022-1,6161,128

Makefile.amH A D01-Oct-20191.5 KiB3825

Makefile.inH A D01-Oct-201927.7 KiB865767

READMEH A D01-Oct-2019872 1713

array-impl.hH A D01-Oct-201995.6 KiB2,5641,925

array.ccH A D01-Oct-20191.3 KiB2823

array.hH A D01-Oct-20191.4 KiB414

bench.ccH A D01-Oct-20197.3 KiB260180

bench.hH A D01-Oct-20193.7 KiB14468

benchext.ccH A D01-Oct-201913.5 KiB468335

benchext.hH A D01-Oct-20194 KiB13865

blitz.hH A D01-Oct-20196.3 KiB199112

bounds.hH A D01-Oct-20193.3 KiB10269

bzconfig.hH A D01-Oct-20192.7 KiB10740

bzdebug.hH A D01-Oct-20197.6 KiB241152

compiler.hH A D01-Oct-20194.2 KiB14883

config.cmake.h.inH A D01-Oct-20198.4 KiB281193

config.h.inH A D01-Oct-20197.5 KiB280188

constpointerstack.hH A D01-Oct-2019588 3222

et-forward.hH A D01-Oct-20192.3 KiB7245

etbase.hH A D01-Oct-20191.7 KiB6118

funcs.hH A D01-Oct-201930.3 KiB658531

globeval.ccH A D01-Oct-201946.1 KiB1,453919

indexexpr.hH A D01-Oct-20198.9 KiB276184

indexmap-forward.hH A D01-Oct-201979 105

levicivita.hH A D01-Oct-20194.9 KiB164120

limits-hack.hH A D01-Oct-201913.9 KiB400295

listinit.hH A D01-Oct-20193 KiB12362

memblock.ccH A D01-Oct-20194.9 KiB15073

memblock.hH A D01-Oct-201914.9 KiB547374

minmax.hH A D01-Oct-20191.9 KiB7326

numinquire.hH A D01-Oct-20196.7 KiB313208

numtrait.hH A D01-Oct-20193.8 KiB10053

ops.hH A D01-Oct-20198.7 KiB219104

prettyprint.hH A D01-Oct-20192.2 KiB7432

promote.hH A D01-Oct-20195.3 KiB17387

range.ccH A D01-Oct-2019659 3424

range.hH A D01-Oct-20199.4 KiB327212

ranks.hH A D01-Oct-2019973 4527

reduce.hH A D01-Oct-201911.7 KiB525331

shapecheck.hH A D01-Oct-20192.5 KiB8426

simdtypes.hH A D01-Oct-20192.5 KiB7435

tau.hH A D01-Oct-20191.9 KiB5620

timer.hH A D01-Oct-20194.3 KiB192110

tinymat2.ccH A D01-Oct-20194.1 KiB13479

tinymat2.hH A D01-Oct-201910.9 KiB359215

tinymat2io.ccH A D01-Oct-20193.1 KiB10460

tinyvec.ccH A D01-Oct-201920.7 KiB636503

tinyvec2.ccH A D01-Oct-20194 KiB14080

tinyvec2.hH A D01-Oct-201912.8 KiB462299

tinyvec2io.ccH A D01-Oct-20192.8 KiB8738

tm2fastiter.hH A D01-Oct-201913.6 KiB482268

tmevaluate.hH A D01-Oct-20196.6 KiB18089

traversal.ccH A D01-Oct-20193.9 KiB13575

traversal.hH A D01-Oct-20193.9 KiB16694

tuning.hH A D01-Oct-20194.7 KiB17293

tv2assign.hH A D01-Oct-20193.1 KiB9451

tv2fastiter.hH A D01-Oct-201913.9 KiB495267

tvcross.hH A D01-Oct-20191.8 KiB6015

tvecglobs.hH A D01-Oct-20192.8 KiB10153

tvevaluate.hH A D01-Oct-20196.7 KiB18692

types.hH A D01-Oct-20194.3 KiB14775

update.hH A D01-Oct-20192.7 KiB8641

vector2.hH A D01-Oct-20193.6 KiB11041

wrap-climits.hH A D01-Oct-2019138 118

README

1Blitz header file notes
2
31) Some matrix headers are included in this release, but only because
4the Benchmark class needs them.  Their design is not yet stable,
5and they are untested, so use them at your own peril.
6
72) A compiler-specific header file with configuration settings is included
8from the master header file <blitz/bzconfig.h>.  The compiler-specific
9header file is selected on the basis of preprocessor symbols.  Since some
10C++ compilers (notably the IBM XL compiler for Darwin and for AIX systems)
11do not define a unique preprocessor symbol, we have added a -D option in
12the autoconf macro AC_CXX_FLAGS_PRESET (see file m4/ac_cxx_flags_preset.m4).
13Thus, we use the option -D__APPLE with xlc++ and -D__IBM with xlC.
14Please note that any user code must also be compiled with the same -D option
15in order to be compiled successfully with one of these compilers.
16
17