We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53d4a24 commit af32325Copy full SHA for af32325
unified-runtime/.github/scripts/install_hwloc.sh
@@ -0,0 +1,18 @@
1
+#!/usr/bin/env bash
2
+
3
+# Copyright (C) 2024 Intel Corporation
4
+# Part of the Unified-Runtime Project, under the Apache License v2.0 with LLVM Exceptions.
5
+# See LICENSE.TXT
6
+# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7
8
+# install_hwloc.sh - Script for building and installing HWLOC library from source code
9
10
+set -e
11
12
+git clone -b hwloc-2.3.0 https://github.com/open-mpi/hwloc.git
13
+pushd hwloc
14
+./autogen.sh
15
+./configure
16
+make -j$(nproc)
17
+sudo make install -j$(nproc)
18
+popd
0 commit comments