From c257575c5eeee498dad1471c46a6ae965ae955c6 Mon Sep 17 00:00:00 2001 From: Chris Elrod Date: Fri, 3 Dec 2021 21:14:32 -0500 Subject: [PATCH 1/2] Quick fix for buserror by adjusting blocking param. --- src/global_constants.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/global_constants.jl b/src/global_constants.jl index c9e5445..af02665 100644 --- a/src/global_constants.jl +++ b/src/global_constants.jl @@ -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}() From 034c0734b3e06e565773aff3df086e8c8e4bc573 Mon Sep 17 00:00:00 2001 From: Chris Elrod Date: Fri, 3 Dec 2021 21:17:04 -0500 Subject: [PATCH 2/2] Bump version --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index eb79da7..ede20dd 100644 --- a/Project.toml +++ b/Project.toml @@ -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"