Ralph Kube
Ralph Kube
Oh, I've just used the plain CC=gcc/CXX=g++ . I've changed the compilers but still get the errors I'm on traverse.princeton.edu (power9). Here is the output from cmake Configuring on traverse...
Ah, this was not defined. I've defined HAVE_MPI. Now there are lots of errors in the HDF5 part of adios: Scanning dependencies of target bp2h5 [ 72%] Building C object...
I think you need modify the definition of `_inverse_log_det_jacobian` like so: ``` def _inverse_log_det_jacobian(self, y, event_ndims=0): ```
In certain situations I'm getting a similar error. I have a MWE set up following [this demo](https://github.com/JuliaLang/PackageCompiler.jl/tree/master/examples/MyLib). Here `filter_stdlibs=false` works fine, but I'm not using any of them. Porting this...
I'm also having a problem with that my plot is not updating when the data is changing. Here is my App.Vue ```javascript import PlotlyTest from "./components/PlotlyTest.vue"; export default { components:...
@Tehsurfer I'm trying your approach of using Plotly directly within Vue components. Using your code from above I get the error "Error: "No DOM element with id 'plot' exists on...
@Tehsurfer Oh, I see. I didn't know how this works. So vue can't resolve references by value (equivalent to passing the string "plotContainer" in the Plotly.react call). Instead it creates...