From d9efdb6fa08d1a0327a67444e8ed67531352f88d Mon Sep 17 00:00:00 2001 From: d3v-null Date: Tue, 30 Jul 2024 23:31:01 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20v0.4.1=20:=20use=20hyperbeam=200?= =?UTF-8?q?.9.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 12 ++++++++++-- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09079d7d..4a120b4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,17 +6,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.1] - 2024-07-31 +### Added +- hyperbeam@0.9.3 + +### Fixed +- fix a compile error when specifying env `HIP_FLAGS` with `--features=hip` +- fix #34 , a compile error for non-x86 CPUs (thanks @cjordan ) + ## [0.4.0] - 2024-06-19 ### Added - fits sourcelist support (including shapelets for Jack-style fits) -- hyperbeam@0.9.3 built@0.7 marlu@0.11.0 mwalib@1.3.3 birli@0.11.0 +- hyperbeam@0.9.2 built@0.7 marlu@0.11.0 mwalib@1.3.3 birli@0.11.0 ### Fixed - rocm6 support - a bunch of really nasty segfaults that took a big toll on my sanity - Huge thanks to @robotopia for fixing https://github.com/MWATelescope/mwa_hyperbeam/issues/9 via hyperbeam 0.9.0 -- performance optimizations in hyperbeam 0.9.3 +- performance optimizations in hyperbeam 0.9.2 ## [0.3.0] - 2023-09-27 ### Added diff --git a/Cargo.lock b/Cargo.lock index 8b17e877..7f1213b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1434,9 +1434,9 @@ dependencies = [ [[package]] name = "mwa_hyperbeam" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0a651dd5bf13c3599a240d12367ad422f0b238eab94471a5062af06dc7ee31f" +checksum = "0d6381480885ab225ca5f1c6861a243848dc05951dc556b8fdd448ac82b632fb" dependencies = [ "cbindgen 0.25.0", "cc", @@ -1456,7 +1456,7 @@ dependencies = [ [[package]] name = "mwa_hyperdrive" -version = "0.4.0" +version = "0.4.1" dependencies = [ "approx", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 19c10821..d6a631c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwa_hyperdrive" -version = "0.4.0" +version = "0.4.1" authors = [ "Christopher H. Jordan ", "Dev Null ", @@ -80,7 +80,7 @@ indicatif = { version = "0.17.5", features = ["rayon"] } lazy_static = "1.4.0" log = "0.4.0" marlu = { version = "0.11.0", features = ["serde"] } -mwa_hyperbeam = "0.9.2" +mwa_hyperbeam = "0.9.3" mwalib = "1.3.3" ndarray = { version = "0.15.4", features = ["rayon"] } num-complex = "0.4.1"