Skip to content

V2021.8 #53

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

Merged
merged 8 commits into from
Jun 25, 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
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# *****************************************************************************
# * *
# * Copyright (C) 2023 Intel Corporation *
# * Copyright (C) 2024 Intel Corporation *
# * *
# *****************************************************************************

Expand Down Expand Up @@ -74,4 +74,5 @@ clean:
make -C src_cpp -f Makefile TARGET=MT clean
make -C src_c/P2P -f Makefile TARGET=P2P clean
make -C src_cpp -f Makefile TARGET=MPI1 clean GPU_ENABLE=1
rm -f IMB-MPI1 IMB-NBC IMB-RMA IMB-EXT IMB-IO IMB-MT IMB-P2P IMB-MPI1-GPU
rm -f IMB-MPI1 IMB-NBC IMB-RMA IMB-EXT IMB-IO IMB-MT IMB-P2P
if [ -e IMB-MPI1-GPU ]; then rm -f IMB-MPI1-GPU; fi
4 changes: 2 additions & 2 deletions Makefile_win
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# *****************************************************************************
# * *
# * Copyright (C) 2023 Intel Corporation *
# * Copyright (C) 2024 Intel Corporation *
# * *
# *****************************************************************************

Expand Down Expand Up @@ -78,4 +78,4 @@ clean:
nmake -f Makefile_win clean TARGET=IO
nmake -f Makefile_win clean TARGET=EXT
cd ..
del /f /q IMB-MPI1.exe IMB-NBC.exe IMB-RMA.exe IMB-EXT.exe IMB-IO.exe IMB-MT.exe
del /f /q IMB-MPI1.exe IMB-NBC.exe IMB-RMA.exe IMB-EXT.exe IMB-IO.exe IMB-MT.exe
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Intel(R) MPI Benchmarks
[![3-Clause BSD License](https://img.shields.io/badge/license-3%20Clause%20BSD%20License-green.svg)](license/license.txt)
![v2021.7](https://img.shields.io/badge/v.2021.7-Update-orange.svg)
![v2021.8](https://img.shields.io/badge/v.2021.8-Update-orange.svg)
--------------------------------------------------

--------
Expand Down Expand Up @@ -63,6 +63,12 @@ files and folders appear on your system:
----------
What's New
----------
New in Intel(R) MPI Benchmarks 2021.8
----------------------------------------
- Migration to icx,icpx compiler
- IMB-MPI1: FP16/BF16 data_type support
- Bug fixes

New in Intel(R) MPI Benchmarks 2021.7
----------------------------------------
- IMB-MPI1-GPU benchmark.
Expand Down
11 changes: 9 additions & 2 deletions ReadMe_IMB.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--------------------------------------
Intel(R) MPI Benchmarks 2021.7
Intel(R) MPI Benchmarks 2021.8
README
--------------------------------------

Expand Down Expand Up @@ -62,6 +62,12 @@ files and folders appear on your system:
----------
What's New
----------
New in Intel(R) MPI Benchmarks 2021.8
----------------------------------------
- Migration to icx,icpx compiler
- IMB-MPI1: FP16/BF16 data_type support
- Bug fixes

New in Intel(R) MPI Benchmarks 2021.7
----------------------------------------
- IMB-MPI1-GPU benchmarks support cuda.
Expand Down Expand Up @@ -246,7 +252,8 @@ command-line parameters.
-----------------------------------------
Building Instructions for Linux* OS
-----------------------------------------
1) Set the CC variable to point to the appropriate compiler wrapper, mpiicc or mpicc.
1) Set the CC and CXX variables to point to the appropriate compiler wrapper,
mpiicx or mpicc for C, mpiicpx or mpicxx for C++.
2) Run one or more Makefile commands below:

make clean - remove legacy binary object files and executable files
Expand Down
4 changes: 2 additions & 2 deletions WINDOWS/IMB-EXT_VS_2017/IMB-EXT.rc
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Intel Corporation"
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
VALUE "FileVersion", "2021.7"
VALUE "FileVersion", "2021.8"
VALUE "InternalName", "IMB-EXT"
VALUE "LegalCopyright", "Copyright Intel Corporation."
VALUE "OriginalFilename", "IMB-EXT.exe"
VALUE "ProductName", "Intel(R) MPI Benchmarks"
VALUE "ProductVersion", "2021.7"
VALUE "ProductVersion", "2021.8"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions WINDOWS/IMB-IO_VS_2017/IMB-IO.rc
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Intel Corporation"
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
VALUE "FileVersion", "2021.7"
VALUE "FileVersion", "2021.8"
VALUE "InternalName", "IMB-IO"
VALUE "LegalCopyright", "Copyright Intel Corporation."
VALUE "OriginalFilename", "IMB-IO.exe"
VALUE "ProductName", "Intel(R) MPI Benchmarks"
VALUE "ProductVersion", "2021.7"
VALUE "ProductVersion", "2021.8"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions WINDOWS/IMB-MPI1_VS_2017/IMB-MPI1.rc
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Intel Corporation"
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
VALUE "FileVersion", "2021.7"
VALUE "FileVersion", "2021.8"
VALUE "InternalName", "IMB-MPI1"
VALUE "LegalCopyright", "Copyright Intel Corporation."
VALUE "OriginalFilename", "IMB-MPI1.exe"
VALUE "ProductName", "Intel(R) MPI Benchmarks"
VALUE "ProductVersion", "2021.7"
VALUE "ProductVersion", "2021.8"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions WINDOWS/IMB-MT_VS_2017/IMB-MT.rc
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Intel Corporation"
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
VALUE "FileVersion", "2021.7"
VALUE "FileVersion", "2021.8"
VALUE "InternalName", "IMB-MT"
VALUE "LegalCopyright", "Copyright Intel Corporation."
VALUE "OriginalFilename", "IMB-MT.exe"
VALUE "ProductName", "Intel(R) MPI Benchmarks"
VALUE "ProductVersion", "2021.7"
VALUE "ProductVersion", "2021.8"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions WINDOWS/IMB-NBC_VS_2017/IMB-NBC.rc
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Intel Corporation"
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
VALUE "FileVersion", "2021.7"
VALUE "FileVersion", "2021.8"
VALUE "InternalName", "IMB-NBC"
VALUE "LegalCopyright", "Copyright Intel Corporation."
VALUE "OriginalFilename", "IMB-NBC.exe"
VALUE "ProductName", "Intel(R) MPI Benchmarks"
VALUE "ProductVersion", "2021.7"
VALUE "ProductVersion", "2021.8"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions WINDOWS/IMB-P2P_VS_2017/IMB-P2P.rc
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Intel Corporation"
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
VALUE "FileVersion", "2021.7"
VALUE "FileVersion", "2021.8"
VALUE "InternalName", "IMB-P2P"
VALUE "LegalCopyright", "Copyright Intel Corporation."
VALUE "OriginalFilename", "IMB-P2P.exe"
VALUE "ProductName", "Intel(R) MPI Benchmarks"
VALUE "ProductVersion", "2021.7"
VALUE "ProductVersion", "2021.8"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions WINDOWS/IMB-RMA_VS_2017/IMB-RMA.rc
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Intel Corporation"
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
VALUE "FileVersion", "2021.7"
VALUE "FileVersion", "2021.8"
VALUE "InternalName", "IMB-RMA"
VALUE "LegalCopyright", "Copyright Intel Corporation."
VALUE "OriginalFilename", "IMB-RMA.exe"
VALUE "ProductName", "Intel(R) MPI Benchmarks"
VALUE "ProductVersion", "2021.7"
VALUE "ProductVersion", "2021.8"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion license/license.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
The 3-Clause BSD License


Copyright (C) 2023 Intel, Inc. All rights reserved.
Copyright (C) 2024 Intel, Inc. All rights reserved.

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