Skip to content

Commit

Permalink
Bump version: 0.6.6 → 0.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mfherbst committed Apr 14, 2023
1 parent 6a8c25c commit ff7f662
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.6
current_version = 0.6.7
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DFTK"
uuid = "acf6eb54-70d9-11e9-0013-234b7a5f5337"
authors = ["Michael F. Herbst <[email protected]>", "Antoine Levitt <[email protected]>"]
version = "0.6.6"
version = "0.6.7"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand Down
4 changes: 3 additions & 1 deletion examples/gpu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ model = model_PBE(lattice, atoms, positions)
architecture = has_cuda() ? DFTK.GPU(CuArray) : DFTK.CPU()

basis = PlaneWaveBasis(model; Ecut=30, kgrid=(5, 5, 5), architecture)
scfres = self_consistent_field(basis; tol=1e-2, solver=scf_damping_solver())
# FIXME right now guess generation on the GPU is broken
ρ = DFTK.to_device(architecture, guess_density(PlaneWaveBasis(model; basis.Ecut, basis.kgrid)))
scfres = self_consistent_field(basis; tol=1e-2, solver=scf_damping_solver(), ρ)
1 change: 1 addition & 0 deletions test/gpu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,4 @@ end
# TODO meta GGA
# TODO Aluminium with LdosMixing
# TODO Anderson acceleration
# TODO Norm-conserving pseudopotentials with non-linear core

2 comments on commit ff7f662

@mfherbst
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/81605

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.7 -m "<description of version>" ff7f6624f050651961f3b299254baf76a04a48be
git push origin v0.6.7

Please sign in to comment.