Skip to content

Commit

Permalink
Version 2020.10.00
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed Oct 28, 2020
1 parent 0e11f98 commit 3c88d38
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
2020.10.00
- Initial release. Functionality:
- Level 3 BLAS
- Matrix norms
- LU, Cholesky, symmetric indefinite linear system solvers
- Hermitian and generalized Hermitian eigenvalues (values only; vectors coming)
- SVD (values only; vectors coming)
- Makefile, CMake, and Spack build options
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cmake_minimum_required( VERSION 3.15 )

project(
slate
VERSION 2020.09.00
VERSION 2020.10.00
LANGUAGES CXX Fortran
)

Expand Down
2 changes: 1 addition & 1 deletion blaspp
Submodule blaspp updated from ce4b10 to 22bbab
2 changes: 1 addition & 1 deletion docs/sphinx/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ License

.. code-block:: console
Copyright (c) 2017, University of Tennessee
Copyright (c) 2017-2020, University of Tennessee
All rights reserved.
Redistribution and use in source and binary forms, with or without
Expand Down
4 changes: 2 additions & 2 deletions include/slate/slate.hh
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
namespace slate {

// Version is updated by make_release.py; DO NOT EDIT.
// Version 0000.00.00
#define SLATE_VERSION 00000000
// Version 2020.10.00
#define SLATE_VERSION 20201000

int version();
const char* id();
Expand Down
2 changes: 1 addition & 1 deletion lapack_api/lapack_getri.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//------------------------------------------------------------------------------
// Copyright (c) 2017, University of Tennessee
// Copyright (c) 2017-2020, University of Tennessee
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion lapackpp
Submodule lapackpp updated from 7427dc to 8b90f1
2 changes: 1 addition & 1 deletion tools/fortran/generate_fortran_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ def write_module(output, module_name, enum_list, struct_list, function_list):
modulefile.write(
'''!>
!>------------------------------------------------------------------------------
!> Copyright (c) 2017, University of Tennessee
!> Copyright (c) 2017-2020, University of Tennessee
!> All rights reserved.
!>
!> Redistribution and use in source and binary forms, with or without
Expand Down
1 change: 1 addition & 0 deletions tools/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ def make( project, version_h, version_c ):
print()

myrun( 'git diff' )
myrun( 'git diff --staged' )
print( '>> Do changes look good? Continue building release [yn]? ', end='' )
response = input()
if (response != 'y'):
Expand Down

0 comments on commit 3c88d38

Please sign in to comment.