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

Migrated from: https://sourceforge.net/p/blitz/bugs/48/ The code below fails on F_safe() call while it does work with F() call: ``` $ cat test.cpp #include using namespace blitz; using namespace std; template auto...

Migrated from https://sourceforge.net/p/blitz/bugs/61/ Since 2013 gcc supports the "ivdep" pragma. However, it has apparently a different syntax than the one used in Blitz. Instead of: ``` #pragma ivdep ``` one...

Migrated from: https://sourceforge.net/p/blitz/bugs/40/ Here's a recipe to show how Blitz misbehaves with a call to a C++11 auto/decltype function: Same results with recent versions of g++ and clang++ ``` $...

As suggested by Patrik Jonsson on the mailing list: https://sourceforge.net/p/blitz/mailman/message/33068240/ > It would be nice to add support for C++11 atomic types instead of TBB... context: > you can make...

Migrated from https://sourceforge.net/p/blitz/feature-requests/3/ As reported by @zeekec on 2008-05-20: > Currently INT_MAX, INT_MIN, and other C macros are used to flag special values. It would be more C++ish to use...

Migrated from: https://sourceforge.net/p/blitz/feature-requests/2/ As suggested by @elfring back in 2007: > Would you like to consider the "GNU General Public License with runtime exception" (RGPL)? http://gcc.gnu.org/onlinedocs/libstdc++/17_intro/license.html > > How do...

These are the contents of the TODO file that I've just removed from the repo as it clearly do not follow TODO-related discussions elsewhere: ``` ** make Blitz STL-compliant **...

Without moving to C++11 (#9), a lot of repetitions in the blitz++ codebase could be omitted using [preprocessor metaprogramming](http://www.boost.org/doc/libs/1_67_0/libs/preprocessor). This would invoke dependence on one more boost library, but that’s...

There are quite a lot of place where we can find info on Blitz (besides blitz docs which is another story/TODO item): - http://blitz.sourceforge.net/ - http://www.math.unipd.it/%7Emichela/OP.htm (contents of the former...

Do we want to migrate it somewhere? If yes, what would be the benefits?

question