blitz icon indicating copy to clipboard operation
blitz copied to clipboard

Blitz++ Multi-Dimensional Array Library for C++

Results 96 blitz issues
Sort by recently updated
recently updated
newest added

> > I've noticed that repeating "make check-testsuite" repeats compilation, while one would expect only the test execution to repeat (as there was no code change)? Is it intentional? >...

in the generated install_manifest.txt file, the bzconfig.h entry is listed twice, which results in an error message when uninstalling: ``` $ sudo xargs rm < install_manifest.txt rm: cannot remove '/usr/include/blitz/bzconfig.h':...

Just for the record, if you only want to find Blitz++ library from CMake, this works: ``` find_package(PkgConfig) pkg_check_modules(BLITZ QUIET blitz>=0.10) if (NOT BLITZ_FOUND) ... ``` _Originally posted by @slayoo...

Just to document some issues I found while attempting to have the cmake build in travis.... 1) On MacOS, the gnu build is the same as the clang build. Because,...

Peter Boyle wrote: Just a small comment — I’m working on a distributed MPP cartesian grid code. github.com/paboyle/Grid Certainly not pitching it as it is niche, focussed on particle physics,...

This patch fixes index type cast: [#111 (comment)](https://github.com/blitzpp/blitz/issues/111#issuecomment-481584393) It requires C++11 support!

Hello! I want to use a very very large Array for programming, which is bigger than 2147483646, the maximum value of int type. So I choose unsigned int as the...

There is a problem with to unwrap of expression templates when we use multicomponent Array on the left side and a vector expression on the right. ```C++ #include #include int...