Skip to content

Commit

Permalink
Version string updated for 4.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Nagendra <[email protected]>
Change-Id: Ifa78deee378b7b818e1ae3feebadc3b78a23e857
  • Loading branch information
nprasadm committed May 24, 2023
1 parent dabe0fc commit 9b1f832
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions SRC/get_aocl_scalapack_version.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/* ---------------------------------------------------------------------
*
* -- AOCL ScaLAPACK routine --
* Copyright (c) 2020-2022 Advanced Micro Devices, Inc.  All rights reserved.
* Copyright (c) 2020-2023 Advanced Micro Devices, Inc.  All rights reserved.
*
* ---------------------------------------------------------------------
*/
Expand All @@ -28,7 +28,7 @@ void get_aocl_scalapack_version_( version, ver_str_len )
#endif
{
#ifdef AOCL_SCALAPACK_VERSION
char slmainversion[] = "AOCL-ScaLAPACK 4.1.0 Beta ";
char slmainversion[] = "AOCL-ScaLAPACK 4.1.0 ";
char slversion[1000];
char scalapackversion[] = ", supports ScaLAPACK 2.2.0";
int length, i;
Expand All @@ -54,8 +54,8 @@ void get_aocl_scalapack_version_( version, ver_str_len )
*ver_str_len = length;
strcpy(version, slversion);
#else
strcpy(version, "AOCL-ScaLAPACK 4.1.0 Beta, supports ScaLAPACK 2.2.0");
*ver_str_len = strlen("AOCL-ScaLAPACK 4.1.0 Beta, supports ScaLAPACK 2.2.0");
strcpy(version, "AOCL-ScaLAPACK 4.1.0, supports ScaLAPACK 2.2.0");
*ver_str_len = strlen("AOCL-ScaLAPACK 4.1.0, supports ScaLAPACK 2.2.0");
#endif
return;
}
Expand Down

0 comments on commit 9b1f832

Please sign in to comment.