Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
Merge pull request #117 from ROCm-Developer-Tools/promotion/mainline/…
Browse files Browse the repository at this point in the history
…2023.07.27

Promote develop branch (as of 863ece8) to mainline
  • Loading branch information
kzhuravl authored Jul 28, 2023
2 parents bf11576 + 1e9ee29 commit 1a6bbfe
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 24 deletions.
31 changes: 18 additions & 13 deletions bin/hipcc.pl
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ BEGIN

use hipvars;
$isWindows = $hipvars::isWindows;
$doubleQuote = $hipvars::doubleQuote;
$HIP_RUNTIME = $hipvars::HIP_RUNTIME;
$HIP_PLATFORM = $hipvars::HIP_PLATFORM;
$HIP_COMPILER = $hipvars::HIP_COMPILER;
Expand All @@ -131,6 +132,10 @@ BEGIN
$HIP_VERSION = $hipvars::HIP_VERSION;
$HIP_ROCCLR_HOME = $hipvars::HIP_ROCCLR_HOME;

sub get_normalized_path {
return $doubleQuote . $_[0] . $doubleQuote;
}

if ($HIP_PLATFORM eq "amd") {
$HIP_INCLUDE_PATH = "$HIP_ROCCLR_HOME/include";
if (!defined $HIP_LIB_PATH) {
Expand All @@ -155,17 +160,17 @@ BEGIN
if($isWindows) {
$execExtension = ".exe";
}
$HIPCC="\"$HIP_CLANG_PATH/clang++" . $execExtension . "\"";
$HIPCC=get_normalized_path("$HIP_CLANG_PATH/clang++" . $execExtension);

# If $HIPCC clang++ is not compiled, use clang instead
if ( ! -e $HIPCC ) {
$HIPCC="\"$HIP_CLANG_PATH/clang" . $execExtension . "\"";
$HIPCC=get_normalized_path("$HIP_CLANG_PATH/clang" . $execExtension);
$HIPLDFLAGS = "--driver-mode=g++";
}
# to avoid using dk linker or MSVC linker
if($isWindows) {
$HIPLDFLAGS .= " -fuse-ld=lld";
$HIPLDFLAGS .= " --ld-path=\"$HIP_CLANG_PATH/lld-link.exe\"";
$HIPLDFLAGS .= " --ld-path=" . get_normalized_path("$HIP_CLANG_PATH/lld-link.exe");
}

# get Clang RT Builtin path
Expand Down Expand Up @@ -201,21 +206,21 @@ BEGIN
print ("CUDA_PATH=$CUDA_PATH\n");
}

$HIPCC="\"$CUDA_PATH/bin/nvcc\"";
$HIPCC=get_normalized_path("$CUDA_PATH/bin/nvcc");
$HIPCXXFLAGS .= " -Wno-deprecated-gpu-targets ";
$HIPCXXFLAGS .= " -isystem \"$CUDA_PATH/include\"";
$HIPCFLAGS .= " -isystem \"$CUDA_PATH/include\"";
$HIPCXXFLAGS .= " -isystem " . get_normalized_path("$CUDA_PATH/include");
$HIPCFLAGS .= " -isystem " . get_normalized_path("$CUDA_PATH/include");

$HIPLDFLAGS = " -Wno-deprecated-gpu-targets -lcuda -lcudart -L\"$CUDA_PATH/lib64\"";
$HIPLDFLAGS = " -Wno-deprecated-gpu-targets -lcuda -lcudart -L" . get_normalized_path("$CUDA_PATH/lib64");
} else {
printf ("error: unknown HIP_PLATFORM = '$HIP_PLATFORM'");
printf (" or HIP_COMPILER = '$HIP_COMPILER'");
exit (-1);
}

# Add paths to common HIP includes:
$HIPCXXFLAGS .= " -isystem \"$HIP_INCLUDE_PATH\"" ;
$HIPCFLAGS .= " -isystem \"$HIP_INCLUDE_PATH\"" ;
$HIPCXXFLAGS .= " -isystem " . get_normalized_path("$HIP_INCLUDE_PATH");
$HIPCFLAGS .= " -isystem " . get_normalized_path("$HIP_INCLUDE_PATH");

my $compileOnly = 0;
my $needCXXFLAGS = 0; # need to add CXX flags to compile step
Expand Down Expand Up @@ -294,7 +299,7 @@ BEGIN

if ($skipOutputFile) {
# TODO: handle filename with shell metacharacters
$toolArgs .= " \"$arg\"";
$toolArgs .= " " . get_normalized_path("$arg");
$prevArg = $arg;
$skipOutputFile = 0;
next;
Expand Down Expand Up @@ -466,7 +471,7 @@ BEGIN
if (not $isWindows and $escapeArg) {
$arg =~ s/[^-a-zA-Z0-9_=+,.\/]/\\$&/g;
}
$toolArgs .= " \"$arg\"" unless $swallowArg;
$toolArgs .= " $arg" unless $swallowArg;
$prevArg = $arg;
}

Expand Down Expand Up @@ -561,14 +566,14 @@ BEGIN

# If the HIP_PATH env var is defined, pass that path to Clang
if ($ENV{'HIP_PATH'}) {
my $hip_path_flag = " --hip-path=\"$HIP_PATH\"";
my $hip_path_flag = " --hip-path=" . get_normalized_path("$HIP_PATH");
$HIPCXXFLAGS .= $hip_path_flag;
$HIPLDFLAGS .= $hip_path_flag;
}

if ($hasHIP) {
if (defined $DEVICE_LIB_PATH) {
$HIPCXXFLAGS .= " --hip-device-lib-path=\"$DEVICE_LIB_PATH\"";
$HIPCXXFLAGS .= " --hip-device-lib-path=" . get_normalized_path("$DEVICE_LIB_PATH");
}
}

Expand Down
17 changes: 13 additions & 4 deletions bin/hipvars.pm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use Cwd;
use File::Basename;

$HIP_BASE_VERSION_MAJOR = "5";
$HIP_BASE_VERSION_MINOR = "5";
$HIP_BASE_VERSION_MINOR = "7";
$HIP_BASE_VERSION_PATCH = "0";

#---
Expand Down Expand Up @@ -61,6 +61,7 @@ sub can_run {
}

$isWindows = ($^O eq 'MSWin32' or $^O eq 'msys');
$doubleQuote = "\"";

#
# TODO: Fix rpath LDFLAGS settings
Expand All @@ -86,6 +87,10 @@ if (-e "$HIP_PATH/bin/rocm_agent_enumerator") {
$ROCM_PATH=$ENV{'ROCM_PATH'} // "/opt/rocm";
}
$CUDA_PATH=$ENV{'CUDA_PATH'} // '/usr/local/cuda';
if ($isWindows and defined $ENV{'CUDA_PATH'}) {
$CUDA_PATH =~ s/^"(.*)"$/$1/;
$CUDA_PATH =~ s/\\/\//g;
}

# Windows/Distro's have a different structure, all binaries are with hipcc
if ($isWindows or -e "$HIP_PATH/bin/clang") {
Expand Down Expand Up @@ -124,9 +129,9 @@ if (defined $HIP_RUNTIME and $HIP_RUNTIME eq "rocclr" and !defined $HIP_ROCCLR_H
}

if (not defined $HIP_PLATFORM) {
if (can_run("\"$HIP_CLANG_PATH/clang++\"") or can_run("clang++")) {
if (can_run($doubleQuote . "$HIP_CLANG_PATH/clang++" . $doubleQuote) or can_run("clang++")) {
$HIP_PLATFORM = "amd";
} elsif (can_run("$CUDA_PATH/bin/nvcc") or can_run("nvcc")) {
} elsif (can_run($doubleQuote . "$CUDA_PATH/bin/nvcc" . $doubleQuote) or can_run("nvcc")) {
$HIP_PLATFORM = "nvidia";
$HIP_COMPILER = "nvcc";
$HIP_RUNTIME = "cuda";
Expand Down Expand Up @@ -154,7 +159,11 @@ if ($HIP_COMPILER eq "clang") {
#---
# Read .hipVersion
my %hipVersion = ();
parse_config_file("$hipvars::HIP_PATH/bin/.hipVersion", \%hipVersion);
if ($isWindows) {
parse_config_file("$hipvars::HIP_PATH/bin/.hipVersion", \%hipVersion);
} else {
parse_config_file("$hipvars::HIP_PATH/share/hip/version", \%hipVersion);
}
$HIP_VERSION_MAJOR = $hipVersion{'HIP_VERSION_MAJOR'} // $HIP_BASE_VERSION_MAJOR;
$HIP_VERSION_MINOR = $hipVersion{'HIP_VERSION_MINOR'} // $HIP_BASE_VERSION_MINOR;
$HIP_VERSION_PATCH = $hipVersion{'HIP_VERSION_PATCH'} // $HIP_BASE_VERSION_PATCH;
Expand Down
2 changes: 1 addition & 1 deletion docs/.sphinx/requirements.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rocm-docs-core==0.14.0
rocm-docs-core==0.19.0
8 changes: 2 additions & 6 deletions docs/.sphinx/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ jinja2==3.1.2
# via
# myst-parser
# sphinx
linkify-it-py==1.0.3
# via myst-parser
markdown-it-py==2.2.0
# via
# mdit-py-plugins
Expand All @@ -62,7 +60,7 @@ mdit-py-plugins==0.3.5
# via myst-parser
mdurl==0.1.2
# via markdown-it-py
myst-parser[linkify]==1.0.0
myst-parser==1.0.0
# via rocm-docs-core
packaging==23.0
# via
Expand Down Expand Up @@ -94,7 +92,7 @@ requests==2.28.2
# via
# pygithub
# sphinx
rocm-docs-core==0.14.0
rocm-docs-core==0.19.0
# via -r requirements.in
smmap==5.0.0
# via gitdb
Expand Down Expand Up @@ -137,8 +135,6 @@ sphinxcontrib-serializinghtml==1.1.5
# via sphinx
typing-extensions==4.5.0
# via pydata-sphinx-theme
uc-micro-py==1.0.1
# via linkify-it-py
urllib3==1.26.15
# via requests
wrapt==1.15.0
Expand Down

0 comments on commit 1a6bbfe

Please sign in to comment.