-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from SotaYoshida/dev
Dev
- Loading branch information
Showing
47 changed files
with
2,272 additions
and
504 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,11 +30,13 @@ jobs: | |
arch: x64 | ||
- uses: julia-actions/cache@v1 | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: julia-actions/julia-runtest@v1 | ||
env: | ||
JULIA_NUM_THREADS: 2 | ||
if: ${{ matrix.payload == 'serial' }} | ||
continue-on-error: ${{ matrix.version == 'nightly' }} | ||
- name: "Run tests" | ||
run: | | ||
julia --project -e 'import Pkg; Pkg.test()' | ||
# env: | ||
# JULIA_NUM_THREADS: 2 | ||
# if: ${{ matrix.payload == 'serial' }} | ||
# continue-on-error: ${{ matrix.version == 'nightly' }} | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
|
@@ -63,35 +65,6 @@ jobs: | |
export PATH=$PATH:/home/runner/.julia/bin | ||
mpiexecjl -n 4 julia --depwarn=yes --project=@. ./test/mpirun_test.jl | ||
# build2: | ||
# runs-on: ubuntu-latest | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# include: | ||
# - {version: '1.8', os: ubuntu-latest} | ||
# name: Run sample_script.jl | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# with: | ||
# fetch-depth: 0 | ||
# - uses: julia-actions/setup-julia@v1 | ||
# with: | ||
# version: ${{ matrix.version }} | ||
# arch: x64 | ||
# - uses: julia-actions/cache@v1 | ||
# - uses: julia-actions/julia-buildpkg@v1 | ||
# - run: | | ||
# git_hash=$(git rev-parse --short "$GITHUB_SHA") | ||
# echo git_hash $git_hash | ||
# echo running on branch ${GITHUB_REF##*/} | ||
# echo git_hash:[$git_hash] > ./example/log_sample_script.txt | ||
# julia --project="@." -t 4 ./example/sample_script.jl >> ./example/log_sample_script.txt | ||
# git add example/log_sample_script.txt | ||
# - name: commit changed logfile | ||
# uses: stefanzweifel/[email protected] | ||
# with: | ||
# commit_message: Update log_sample_script.txt | ||
docs: | ||
name: Documentation | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Files generated by invoking Julia with --code-coverage | ||
*.jl.cov | ||
*.jl.*.cov | ||
|
||
# Files generated by invoking Julia with --track-allocation | ||
*.jl.mem | ||
|
||
# System-specific files and directories generated by the BinaryProvider and BinDeps packages | ||
# They contain absolute paths specific to the host computer, and so should not be committed | ||
deps/deps.jl | ||
deps/build.log | ||
deps/downloads/ | ||
deps/usr/ | ||
deps/src/ | ||
|
||
# Build artifacts for creating documentation generated by the Documenter package | ||
docs/build/ | ||
docs/site/ | ||
|
||
# Mac | ||
.DS_Store | ||
src/.DS_Store | ||
docs/.DS_Store | ||
|
||
# potential files and Omega generated through IMSRG flows | ||
*.snt | ||
*.snt.bin | ||
/snts | ||
/flowOmega | ||
logfile.dat | ||
*/logfile.dat | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "NuclearToolkit" | ||
uuid = "89bb3bae-bcec-43ae-87b7-9dd181dc6334" | ||
authors = ["SotaYoshida <[email protected]> and contributors"] | ||
version = "0.4.0" | ||
version = "0.4.1" | ||
|
||
[deps] | ||
Arpack = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97" | ||
|
@@ -32,9 +32,9 @@ WignerSymbols = "9f57e263-0b3d-5e2e-b1be-24f2bb48858b" | |
[compat] | ||
Arpack = "0.5" | ||
AssociatedLegendrePolynomials = "1" | ||
CodecZlib="0.7" | ||
CodecZlib = "0.7" | ||
Combinatorics = "1" | ||
DocStringExtensions="0.9" | ||
DocStringExtensions = "0.9" | ||
FLoops = "0.2" | ||
Glob = "1" | ||
HDF5 = "0.16, 0.17" | ||
|
@@ -44,8 +44,8 @@ LatinHypercubeSampling = "1.8" | |
MKL = "0.6" | ||
MPI = "0.19, 0.20" | ||
Measures = "0.3" | ||
Plots = "1" | ||
Parsers = "2.8" | ||
Plots = "1" | ||
SpecialFunctions = "2" | ||
Statistics = "1" | ||
StatsBase = "0.33, 0.34" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.