-
What should broadcasting to a dimension of length 0 do? The current behavior leaves that dimension unchanged. Is that intended?
_I **think** I would expect that dimension to drop to `0`, but the o…
-
I think there is a bug in the core broadcasting feature of xtensor that carries over into how a number of different operations work. (At the very least, it is an inconsistency with numpy where I feel …
-
Supposedly a strided view is much faster than a dynamic view. For rray_bind(), aren't you always binding contiguous slices? So can we use xt::all() with xt::range() to generate the views? For rray_sub…
-
Hi everyone,
I've been trying to compile a very simple application for a TI TMS570 using TI Code Composer Studio (version 9.0.1).
As mentioned in the ETL documentation, I defined the macro `__ST…
-
I have gathered from playing with numpy that reducing functions have the property that, no matter what, when you reduce over an axis the size of that axis becomes `1`. This applies even if the axis wa…
-
I got this error trying to install 'tutorial_mapper' on OS X 10.11.6 in a conda 3.6 virtual enviornment
(it worked on Ubuntu 16.06 LTS):
```
$ pip install -r requirements.txt
Collecting giotto-lea…
-
I'm wondering about the behavior of xtensor functions like `sum()` when the input is of length 0. What should the result be? Currently, it crashes.
```cpp
// [[Rcpp::depends(xtensorrr)]]
// [[Rcp…
-
__Update: ignore all of this and skip to the next comment__
I am on the current master branch of everything required for xtensor-r.
After installing all of those master versions, all of my rray …
-
I run the quick start example using following command:
`graphvite baseline quick start`
Here is the output, loss always zero and macro-F1@20%: 0.0266747.
Do I need tune some params to get your rep…
-
given the file namespaced_class.cpp
```cpp
namespace nsA {
namespace nsB {
// declare MyClass
class MyClass {
int i;
};
}
}
```
The grammar should parse. Instead,…