Skip to content

Commit

Permalink
Quick fix for buserror by adjusting blocking param. (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod authored Dec 4, 2021
1 parent b694678 commit f2e527c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Octavian"
uuid = "6fd5a793-0b7e-452c-907f-f8bfe9c57db4"
authors = ["Mason Protter", "Chris Elrod", "Dilum Aluthge", "contributors"]
version = "0.3.8"
version = "0.3.9"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
3 changes: 2 additions & 1 deletion src/global_constants.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ MᵣW_mul_factor(::True) = StaticInt{4}()
MᵣW_mul_factor(::False) = StaticInt{9}()
MᵣW_mul_factor() = MᵣW_mul_factor(has_feature(Val(:x86_64_avx512f)))

W₁Default(::True) = StaticFloat64{0.0009898277594117685}()
W₁Default(::True) = StaticFloat64{0.009898277594117685}()
# W₁Default(::True) = StaticFloat64{0.0009898277594117685}()
W₂Default(::True) = StaticFloat64{0.9865020832559304}()
R₁Default(::True) = StaticFloat64{0.5820044063603483}()
R₂Default(::True) = StaticFloat64{0.7580885846640107}()
Expand Down

2 comments on commit f2e527c

@chriselrod
Copy link
Collaborator 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/49924

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.3.9 -m "<description of version>" f2e527cbf6bb0c9ca219a5351e12e4145a809e3e
git push origin v0.3.9

Please sign in to comment.