Rainer Heintzmann

Results 97 comments of Rainer Heintzmann

Also a great thanks from my side.

It would be interesting to have a 3D tool, but as a step towards it, one could also construct it by showing both, an XZ and a YZ (projection) view...

A very simple example that shows the problem: ```julia x = ones(10,10); q = LazyArray(@~ x .* abs(1.0)) ``` It seems like any function call not operating on an array...

I think you are right. ```julia materialize(applied(x->x.*abs(x),x)) ``` works fine.

The LazyArray defers the evaluation to the point of access in the reduce (e.g. sum) or `collect` operation. On the GPU reduce operations are not performed sequentially but in a...

... digging into the code, it seems that the issue with the loop is a minor display issue. However, when calling `collect` on an object created by `LazyArray(@~ ...)`, the...

> For Mac, set the `JAVA_HOME` environmental variable to tell JavaCall where to find Java. Where are you getting Java for Mac from? Thanks for the hints. Would be great,...

Thanks. This is in my `ci.yml` file in `.github\workflows`, but it seems to have no positive effect on the tests. ```yml steps: - uses: actions/checkout@v2 - uses: actions/setup-java@v2 with: distribution:...

The problem seems to be the X-Windows system under Linux. GitHub actions works pretty well. Even the installation of the x-windows system seems to run through but it always stops...

Thanks for the hint! This causes other problems, but they are possibly fixable in my Java code. The headless mode is understandably unhappy to report about its screensize: ``` Exception...