Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Housekeeping #747

Merged
merged 5 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@

## unscheduled features

## v0.5.0 (9 Aug 2024)
- Rewriting local kronmult library and adding an optional global kronmult library
- Matrix-free implicit timestepping using GMRES or BICGStab solver
- IMEX time advance
- File checkpoint restart
- New PDEs

## v0.3.0 (26 Feb 2020)

- [x] multi-node capability (merged 24 Oct 2019)
Expand Down
9 changes: 2 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
cmake_minimum_required (VERSION 3.19)

project (asgard
VERSION 0.7.0
LANGUAGES CXX
)
project (asgard VERSION 0.7.0 LANGUAGES CXX)

#-------------------------------------------------------------------------------
# Setup the kromult external project.
Expand Down Expand Up @@ -149,10 +146,8 @@ find_package (LINALG REQUIRED)

# sets OpenBLAS_PATH and LINALG_LIBS
include (${CMAKE_SOURCE_DIR}/contrib/contrib.cmake)
# sets PROFILE_DEPS and PROFILE_LIBS
include (${CMAKE_SOURCE_DIR}/profiling/profiling.cmake)
# sets HighFive_FOUND
include (${CMAKE_SOURCE_DIR}/contrib/io.cmake)
include (${CMAKE_SOURCE_DIR}/contrib/asgard_io.cmake)

string(FIND "${BLAS_LIBRARIES}" "mkl" FOUND_MKL)
set(ASGARD_USE_MKL FALSE)
Expand Down
22 changes: 21 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,32 @@

Miroslav Stoyanov (Oak Ridge National Lab)
- Project lead since 2023

Stefan Schnake (Oak Ridge National Lab)
- Software and method developer

Eirik Endeve (Oak Ridge National Lab)
- Software and method developer

Cory Hauck (Oak Ridge National Lab)
- Software and method developer

Steven Hahn (Oak Ridge National Lab)
- Software developer

## past developers

Coleman Kendrick (Oak Ridge National Lab)
- Computer scientist

Eduardo D'Azevedo (Oak Ridge National Lab)
- Method development

Wael Elwasif (Oak Ridge National Lab)
- Computer scientist

David L. Green (Oak Ridge National Lab)
- Principal investigator and project lead
- Principal investigator and project lead (until 2023)

M. Graham Lopez (Oak Ridge National Lab)
- Lead software engineer
Expand Down
File renamed without changes.
22 changes: 0 additions & 22 deletions scripts/matlab/electric.m

This file was deleted.

233 changes: 0 additions & 233 deletions scripts/matlab/plot_fval.m

This file was deleted.

27 changes: 0 additions & 27 deletions scripts/matlab/vlasov_params.m

This file was deleted.

8 changes: 0 additions & 8 deletions scripts/matlab/wait_for_plots.m

This file was deleted.

Loading