ublas icon indicating copy to clipboard operation
ublas copied to clipboard

Boost.uBlas

Results 61 ublas issues
Sort by recently updated
recently updated
newest added

All the implicit special member functions made explicit in this PR. It fixes the compilation and test runs with `./b2 libs/numeric/ublas/test/ cxxstd=17 "cxxflags=-Werror=deprecated-copy" toolset=clang-13 -j4`

I'm compiling a simple program which includes the `tensor.hpp` header: ```c++ #include #include int main() { auto A = boost::numeric::ublas::tensor{3,4,2}; std::cout

bug
question
fixed

**Issue Description:** Boost\libs\numeric\ublas failed to build due to error C2059, C2065, C2923, C2976, C2447 .... on MSVC. Could you please take a look? The master branch commit we used is...

The call in the first element_sub overload is changed to: element_wise(a, b, result, compute::minus(), queue); as opposed to element_wise(a, b, compute::minus(), result, queue); Fixes #129

An UBLAS patch called: "Remove deprecated inheritance from std::iterator #97" didn't make it into the released version of Boost. "std::iterator was deprecated in C++17 and removed in C++20. I replaced...

The current loops rely on `auto` deduction or integer suffix for the type that may not be a correct iteration type and may produce conversion warnings all over places. Therefore,...

enhancement

I have added the documentation of special functions for tensors as instructed in proposal https://github.com/boostorg/ublas/discussions/167#discussioncomment-2166688

The current implementation does not take into account the prvalue that creates an issue while storing it. The prvalue is destroyed after the end of its scope, and if you...

The parameter ordering of a call to element_wise within one of the element_sub overloads is incorrect. Since the function signature of element_wise is: ``` void element_wise(ublas::matrix const &a, ublas::matrix const...

bug

> https://boostorg.github.io/ublas/ I checked this documentation link to try out some code examples and under this section https://boostorg.github.io/ublas/#tensor_idealogy The code example given gives a build error on my system saying...

bug