Alexander Barth
Alexander Barth
I had the same problem on Ubuntu 20.04. The compilations works after this change: ``` diff --git a/src/configurationdata.cpp b/src/configurationdata.cpp index 36dcc39..9536069 100644 --- a/src/configurationdata.cpp +++ b/src/configurationdata.cpp @@ -17,6 +17,7 @@...
I had very large white margin when making the pdf export (using printing) for the 16:9 ratio (including with `wkhtmltopdf`) For reference, this is what I used to solve this:...
For what it is worth I can create a notebook via curl by ``` curl -X POST -H "Content-Type: application/json" -H "Authorization: token $token" -d '{"type": "notebook"}' "$URL/user/abarth/api/contents" ``` But...
Apparently, CUDA (as of 3.9.0) does not have such kernel either: ``` using CUDA; repeat(cu(ones(2,2)),1,1,3) ┌ Warning: Performing scalar indexing on task Task (runnable) @0x00007f7d738a0010. │ Invocation of getindex resulted...
I need to compute the gradient of a function in a tight loop where one parameter is constant and this feature would be exactly what I need. IMHO, the second...
For me (as a user of netcdf in my research work), it is certainly acceptable to manually define this configuration file `.ncrc`. But as a developer of a julia wrapper,...
Thanks @visr, for your test with `NC_rcfile_insert` and `NC_rclookup`. I had look with the gdb debugger while running `NC_rcfile_insert` from a julia session. When reaching this line https://github.com/Unidata/netcdf-c/blob/v4.8.1/libdispatch/drc.c#L532, just before...
With this PR https://github.com/Unidata/netcdf-c/pull/2352/commits/defa1533705650ba5910caa1fd890a868f37d795 we can now use the private API `NC_rcfile_insert` to set `HTTP.SSL.CAINFO`. I am wondering if there is any chance to have a public API for this...
Unfortunately, I see this failure now when trying this on NetCDF 4.9.0. ``` julia: drc.c:117: ncrc_setrchome: Assertion `ncg && ncg->home' failed. signal (6): Aborted in expression starting at /home/runner/work/_temp/4a1f6304-e640-43[7](https://github.com/Alexander-Barth/NCDatasets.jl/runs/6857358120?check_suite_focus=true#step:9:8)6-[8](https://github.com/Alexander-Barth/NCDatasets.jl/runs/6857358120?check_suite_focus=true#step:9:9)503-7bb4267810ff:1 gsignal...
This issue is now on Linux (Ubuntu 20.04), also reproduced on CI: https://github.com/Alexander-Barth/NCDatasets.jl/runs/6857358120?check_suite_focus=true It might be also present on other platforms, but I did not reached the same point on...