Chen Zhao

Results 16 comments of Chen Zhao

And here are the benchmarking results I got on an Intel Xeon server with 36 cores. The scaling of multi-threading performance is weird. ``` nthreads = 2, N = 29,...

The version of Polyester is v0.6.4. And `versioninfo()` in Julia is ``` Julia Version 1.7.2 Commit bf53498635 (2022-02-06 15:21 UTC) Platform Info: OS: Linux (x86_64-pc-linux-gnu) CPU: Intel(R) Xeon(R) Gold 6240...

Thanks @kailaix ! The building of ADCME.jl passed. However, the building of AdFem.jl failed. It seems like there is something wrong with the clang compiler. ```julia (@v1.5) pkg> build AdFem...

@kailaix I removed the directory `~/.julia/adcme` and run the Miniconda script. Then the building of ADCME passed.

After manual installation, it still failed in AdFem.jl. ```julia (@v1.5) pkg> build AdFem Building HDF5 ──→ `~/.julia/packages/HDF5/T1b9x/deps/build.log` Building Conda ─→ `~/.julia/packages/Conda/3rPhK/deps/build.log` Building PyCall → `~/.julia/packages/PyCall/BcTLp/deps/build.log` Building CMake ─→ `~/.julia/packages/CMake/ULbyn/deps/build.log` Building...

There was no error when installing manually. ```julia julia> include("build.jl") ┌ Warning: Pkg.installed() is deprecated └ @ Pkg /Users/julia/buildbot/worker/package_macos64/build/usr/share/julia/stdlib/v1.5/Pkg/src/Pkg.jl:554 ┌ Warning: Pkg.installed() is deprecated └ @ Pkg /Users/julia/buildbot/worker/package_macos64/build/usr/share/julia/stdlib/v1.5/Pkg/src/Pkg.jl:554 [ Info:...

I guess I have find where the problem comes from. The operation of `:(Foo{T})(A)` is `:(Foo{T})` which is another Expr. So when you generate a match pattern in `makepattern`, `op`...

Thanks for the issue. This design of returning indices when adding new vertex in `Multigraphs.jl` is for keep track on the new indices. As `Multigraphs.jl` is originally designed for `ZXCalculus.jl`...

There is no need to add dependency of Multigraphs in MetaGraphsNext. Both of these packages are paralleled packages based on the Graphs API. I think the correct place to do...

Thanks for the discussion. It seems still too early to change the design. Let us keep track on the Graphs 2.0 API standard. For your current usage, a patch might...