Skip to content
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
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,10 @@ target_link_libraries(TransferBench PRIVATE dl)
target_link_libraries(TransferBench PRIVATE ${NUMA_LIBRARY})
target_link_libraries(TransferBench PRIVATE ${HSA_LIBRARY})

# gcc <9 ships std::filesystem in a separate library (libstdc++fs).
# Required on AlmaLinux 8 / manylinux_2_28; harmless no-op stub on newer toolchains.
target_link_libraries(TransferBench PRIVATE stdc++fs)

rocm_install(TARGETS TransferBench COMPONENT devel)
rocm_setup_version(VERSION ${VERSION_STRING})

Expand Down
2 changes: 2 additions & 0 deletions src/client/Presets/AllToAll.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

#include <limits>

int AllToAllPreset(EnvVars& ev,
size_t const numBytesPerTransfer,
std::string const presetName)
Expand Down
1 change: 1 addition & 0 deletions src/client/Presets/AllToAllN.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

#include <limits>
#include "EnvVars.hpp"

int AllToAllRdmaPreset(EnvVars& ev,
Expand Down
2 changes: 2 additions & 0 deletions src/client/Presets/NicPeerToPeer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

#include <numeric>

// Helper functions

// Returns a schedule of round robin pairing of N elements, using Circle Method
Expand Down
1 change: 1 addition & 0 deletions src/client/Utilities.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ THE SOFTWARE.
*/

#pragma once
#include <iomanip>
#include <unordered_map>
#include <unordered_set>
#include "TransferBench.hpp"
Expand Down
1 change: 0 additions & 1 deletion src/header/TransferBench.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ THE SOFTWARE.
#include <algorithm>
#include <arpa/inet.h>
#include <atomic>
#include <barrier>
#include <cstring>
#include <fcntl.h>
#include <filesystem>
Expand Down