Skip to content

Commit 4625038

Browse files
authored
Merge pull request #53 from intel/v2021.8
V2021.8
2 parents 1700f50 + bdf1915 commit 4625038

File tree

158 files changed

+447
-798
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+447
-798
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# *****************************************************************************
22
# * *
3-
# * Copyright (C) 2023 Intel Corporation *
3+
# * Copyright (C) 2024 Intel Corporation *
44
# * *
55
# *****************************************************************************
66

@@ -74,4 +74,5 @@ clean:
7474
make -C src_cpp -f Makefile TARGET=MT clean
7575
make -C src_c/P2P -f Makefile TARGET=P2P clean
7676
make -C src_cpp -f Makefile TARGET=MPI1 clean GPU_ENABLE=1
77-
rm -f IMB-MPI1 IMB-NBC IMB-RMA IMB-EXT IMB-IO IMB-MT IMB-P2P IMB-MPI1-GPU
77+
rm -f IMB-MPI1 IMB-NBC IMB-RMA IMB-EXT IMB-IO IMB-MT IMB-P2P
78+
if [ -e IMB-MPI1-GPU ]; then rm -f IMB-MPI1-GPU; fi

Makefile_win

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# *****************************************************************************
22
# * *
3-
# * Copyright (C) 2023 Intel Corporation *
3+
# * Copyright (C) 2024 Intel Corporation *
44
# * *
55
# *****************************************************************************
66

@@ -78,4 +78,4 @@ clean:
7878
nmake -f Makefile_win clean TARGET=IO
7979
nmake -f Makefile_win clean TARGET=EXT
8080
cd ..
81-
del /f /q IMB-MPI1.exe IMB-NBC.exe IMB-RMA.exe IMB-EXT.exe IMB-IO.exe IMB-MT.exe
81+
del /f /q IMB-MPI1.exe IMB-NBC.exe IMB-RMA.exe IMB-EXT.exe IMB-IO.exe IMB-MT.exe

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Intel(R) MPI Benchmarks
22
[![3-Clause BSD License](https://img.shields.io/badge/license-3%20Clause%20BSD%20License-green.svg)](license/license.txt)
3-
![v2021.7](https://img.shields.io/badge/v.2021.7-Update-orange.svg)
3+
![v2021.8](https://img.shields.io/badge/v.2021.8-Update-orange.svg)
44
--------------------------------------------------
55

66
--------
@@ -63,6 +63,12 @@ files and folders appear on your system:
6363
----------
6464
What's New
6565
----------
66+
New in Intel(R) MPI Benchmarks 2021.8
67+
----------------------------------------
68+
- Migration to icx,icpx compiler
69+
- IMB-MPI1: FP16/BF16 data_type support
70+
- Bug fixes
71+
6672
New in Intel(R) MPI Benchmarks 2021.7
6773
----------------------------------------
6874
- IMB-MPI1-GPU benchmark.

ReadMe_IMB.txt

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--------------------------------------
2-
Intel(R) MPI Benchmarks 2021.7
2+
Intel(R) MPI Benchmarks 2021.8
33
README
44
--------------------------------------
55

@@ -62,6 +62,12 @@ files and folders appear on your system:
6262
----------
6363
What's New
6464
----------
65+
New in Intel(R) MPI Benchmarks 2021.8
66+
----------------------------------------
67+
- Migration to icx,icpx compiler
68+
- IMB-MPI1: FP16/BF16 data_type support
69+
- Bug fixes
70+
6571
New in Intel(R) MPI Benchmarks 2021.7
6672
----------------------------------------
6773
- IMB-MPI1-GPU benchmarks support cuda.
@@ -246,7 +252,8 @@ command-line parameters.
246252
-----------------------------------------
247253
Building Instructions for Linux* OS
248254
-----------------------------------------
249-
1) Set the CC variable to point to the appropriate compiler wrapper, mpiicc or mpicc.
255+
1) Set the CC and CXX variables to point to the appropriate compiler wrapper,
256+
mpiicx or mpicc for C, mpiicpx or mpicxx for C++.
250257
2) Run one or more Makefile commands below:
251258

252259
make clean - remove legacy binary object files and executable files

WINDOWS/IMB-EXT_VS_2017/IMB-EXT.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ BEGIN
7171
BEGIN
7272
VALUE "CompanyName", "Intel Corporation"
7373
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
74-
VALUE "FileVersion", "2021.7"
74+
VALUE "FileVersion", "2021.8"
7575
VALUE "InternalName", "IMB-EXT"
7676
VALUE "LegalCopyright", "Copyright Intel Corporation."
7777
VALUE "OriginalFilename", "IMB-EXT.exe"
7878
VALUE "ProductName", "Intel(R) MPI Benchmarks"
79-
VALUE "ProductVersion", "2021.7"
79+
VALUE "ProductVersion", "2021.8"
8080
END
8181
END
8282
BLOCK "VarFileInfo"

WINDOWS/IMB-IO_VS_2017/IMB-IO.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ BEGIN
7171
BEGIN
7272
VALUE "CompanyName", "Intel Corporation"
7373
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
74-
VALUE "FileVersion", "2021.7"
74+
VALUE "FileVersion", "2021.8"
7575
VALUE "InternalName", "IMB-IO"
7676
VALUE "LegalCopyright", "Copyright Intel Corporation."
7777
VALUE "OriginalFilename", "IMB-IO.exe"
7878
VALUE "ProductName", "Intel(R) MPI Benchmarks"
79-
VALUE "ProductVersion", "2021.7"
79+
VALUE "ProductVersion", "2021.8"
8080
END
8181
END
8282
BLOCK "VarFileInfo"

WINDOWS/IMB-MPI1_VS_2017/IMB-MPI1.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ BEGIN
7171
BEGIN
7272
VALUE "CompanyName", "Intel Corporation"
7373
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
74-
VALUE "FileVersion", "2021.7"
74+
VALUE "FileVersion", "2021.8"
7575
VALUE "InternalName", "IMB-MPI1"
7676
VALUE "LegalCopyright", "Copyright Intel Corporation."
7777
VALUE "OriginalFilename", "IMB-MPI1.exe"
7878
VALUE "ProductName", "Intel(R) MPI Benchmarks"
79-
VALUE "ProductVersion", "2021.7"
79+
VALUE "ProductVersion", "2021.8"
8080
END
8181
END
8282
BLOCK "VarFileInfo"

WINDOWS/IMB-MT_VS_2017/IMB-MT.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ BEGIN
7171
BEGIN
7272
VALUE "CompanyName", "Intel Corporation"
7373
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
74-
VALUE "FileVersion", "2021.7"
74+
VALUE "FileVersion", "2021.8"
7575
VALUE "InternalName", "IMB-MT"
7676
VALUE "LegalCopyright", "Copyright Intel Corporation."
7777
VALUE "OriginalFilename", "IMB-MT.exe"
7878
VALUE "ProductName", "Intel(R) MPI Benchmarks"
79-
VALUE "ProductVersion", "2021.7"
79+
VALUE "ProductVersion", "2021.8"
8080
END
8181
END
8282
BLOCK "VarFileInfo"

WINDOWS/IMB-NBC_VS_2017/IMB-NBC.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ BEGIN
7171
BEGIN
7272
VALUE "CompanyName", "Intel Corporation"
7373
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
74-
VALUE "FileVersion", "2021.7"
74+
VALUE "FileVersion", "2021.8"
7575
VALUE "InternalName", "IMB-NBC"
7676
VALUE "LegalCopyright", "Copyright Intel Corporation."
7777
VALUE "OriginalFilename", "IMB-NBC.exe"
7878
VALUE "ProductName", "Intel(R) MPI Benchmarks"
79-
VALUE "ProductVersion", "2021.7"
79+
VALUE "ProductVersion", "2021.8"
8080
END
8181
END
8282
BLOCK "VarFileInfo"

WINDOWS/IMB-P2P_VS_2017/IMB-P2P.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ BEGIN
7171
BEGIN
7272
VALUE "CompanyName", "Intel Corporation"
7373
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
74-
VALUE "FileVersion", "2021.7"
74+
VALUE "FileVersion", "2021.8"
7575
VALUE "InternalName", "IMB-P2P"
7676
VALUE "LegalCopyright", "Copyright Intel Corporation."
7777
VALUE "OriginalFilename", "IMB-P2P.exe"
7878
VALUE "ProductName", "Intel(R) MPI Benchmarks"
79-
VALUE "ProductVersion", "2021.7"
79+
VALUE "ProductVersion", "2021.8"
8080
END
8181
END
8282
BLOCK "VarFileInfo"

WINDOWS/IMB-RMA_VS_2017/IMB-RMA.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ BEGIN
7171
BEGIN
7272
VALUE "CompanyName", "Intel Corporation"
7373
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
74-
VALUE "FileVersion", "2021.7"
74+
VALUE "FileVersion", "2021.8"
7575
VALUE "InternalName", "IMB-RMA"
7676
VALUE "LegalCopyright", "Copyright Intel Corporation."
7777
VALUE "OriginalFilename", "IMB-RMA.exe"
7878
VALUE "ProductName", "Intel(R) MPI Benchmarks"
79-
VALUE "ProductVersion", "2021.7"
79+
VALUE "ProductVersion", "2021.8"
8080
END
8181
END
8282
BLOCK "VarFileInfo"

license/license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
The 3-Clause BSD License
1111

1212

13-
Copyright (C) 2023 Intel, Inc. All rights reserved.
13+
Copyright (C) 2024 Intel, Inc. All rights reserved.
1414

1515
Redistribution and use in source and binary forms, with or without
1616
modification, are permitted provided that the following conditions are met:

0 commit comments

Comments
 (0)