jsjie
jsjie
using docker image [centos 6.8](https://hub.docker.com/layers/library/centos/6.8/images/sha256-82f3b5f3c58f22e50d6b05f227c675af504cffc9dff7e318df5fc40faee6410e?context=explore) and julia 1.7.1 official binary, a hello-world package with only one file in src/: ``` module HW function hw()::Cint print("hello, world!") return 0 end end...
This error happens when I try to write a wrapper for package pyscf using conda. A minimum case is like the following: ``` . ├── environment.yml ├── main.py └── test...
A MWE: ``` module SelfTest using MKL # Write your package code here. function julia_main()::Cint println("wow") return 0 end end ``` Compiled on a Windows11 machine, with ``` julia> versioninfo()...
Only test on windows11 with julia-1.7.1. A MWE: 1. make a package (called SelfTest) with PackageTemplate.jl 2. add HDF5 as a dependency 3. create the main function ``` function julia_main()::Cint...
Under some circumstances, a MWE: ``` julia> using EzXML julia> EzXML.XML_GLOBAL_ERROR_STACK EzXML.XMLError[] julia> using MPI julia> EzXML.XML_GLOBAL_ERROR_STACK EzXML.XMLError[] julia> MPI.Init() MPI.ThreadLevel(2) julia> EzXML.XML_GLOBAL_ERROR_STACK 1-element Vector{EzXML.XMLError}: EzXML.XMLError(1, 5, "Extra content at...
A test file goes: ``` let global wow function wow() println("wow!") end end wow() ``` This file can be executed by julia and output "wow!" as expected. However, julia vscode...
After briefly examing the code, I am under the impression that currently FFTW MPI interface is not supported. Is it true? If so, are there any plans to add such...