From 6df8e82905dc6d96da2b724c2e65291694dc380b Mon Sep 17 00:00:00 2001 From: d3v-null Date: Tue, 30 Jul 2024 22:57:27 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20v0.9.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4fd0a9..1e43b54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,21 @@ 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.9.3] - 2024-07-31 +### Fixed +- fix a compile error when specifying env `HIP_FLAGS` with `--features=hip` + +## [0.9.2] - 2024-06-21 +### Fixed +- reduce wasted cycles if the number of coefficients in the beam file is less than + maximum N that the beam kernels are sized for. Since NMAX=31 and the default beam file + is in the low 20s, this speeds things up. + +## [0.9.1] - 2024-06-21 +### Fixed +- fix #11 : revert some of #9 , moving device memory allocations back onto the stack, + this is fine because the kernels are smaller than before. + ## [0.9.0] - 2024-05-24 ### Fixed - Huge thanks to @robotopia for fixing https://github.com/MWATelescope/mwa_hyperbeam/issues/9 diff --git a/Cargo.lock b/Cargo.lock index 20a4f42..fe8c4ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -869,7 +869,7 @@ dependencies = [ [[package]] name = "mwa_hyperbeam" -version = "0.9.2" +version = "0.9.3" dependencies = [ "approx", "cbindgen", diff --git a/Cargo.toml b/Cargo.toml index 3578feb..3222363 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwa_hyperbeam" -version = "0.9.2" +version = "0.9.3" authors = [ "Christopher H. Jordan ", "Jack L. B. Line ",