]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[nvptx] Use nvptx-sm.def for t-omp-device
authorTom de Vries <tdevries@suse.de>
Fri, 25 Feb 2022 11:18:17 +0000 (12:18 +0100)
committerTom de Vries <tdevries@suse.de>
Tue, 1 Mar 2022 07:58:36 +0000 (08:58 +0100)
Add a script gen-omp-device-properties.sh that uses nvptx-sm.def to generate
omp-device-properties-nvptx.

Tested on x86_64 with nvptx accelerator.

gcc/ChangeLog:

2022-02-25  Tom de Vries  <tdevries@suse.de>

* config/nvptx/gen-omp-device-properties.sh: New file.
* config/nvptx/t-omp-device: Use gen-omp-device-properties.sh.

gcc/config/nvptx/gen-omp-device-properties.sh [new file with mode: 0644]
gcc/config/nvptx/t-omp-device

diff --git a/gcc/config/nvptx/gen-omp-device-properties.sh b/gcc/config/nvptx/gen-omp-device-properties.sh
new file mode 100644 (file)
index 0000000..175092c
--- /dev/null
@@ -0,0 +1,33 @@
+#!/bin/sh
+
+# Copyright (C) 2022 Free Software Foundation, Inc.
+#
+# This file is part of GCC.
+#
+# GCC is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3, or (at your option)
+# any later version.
+#
+# GCC is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCC; see the file COPYING3.  If not see
+# <http://www.gnu.org/licenses/>.
+
+nvptx_sm_def="$1/nvptx-sm.def"
+
+sms=$(grep ^NVPTX_SM $nvptx_sm_def | sed 's/.*(//;s/,.*//')
+
+echo kind: gpu
+echo arch: nvptx
+
+isa=""
+for sm in $sms; do
+    isa="$isa sm_$sm"
+done
+
+echo isa: $isa
index 4228218a42480e4eb75230e428923cae5c18e482..c2b28a41ee415b7da3ea11d7605c39f74ddb738f 100644 (file)
@@ -1,4 +1,3 @@
-omp-device-properties-nvptx: $(srcdir)/config/nvptx/nvptx.cc
-       echo kind: gpu > $@
-       echo arch: nvptx >> $@
-       echo isa: sm_30 sm_35 sm_53 sm_70 sm_75 sm_80 >> $@
+omp-device-properties-nvptx: $(srcdir)/config/nvptx/nvptx-sm.def
+       $(SHELL) $(srcdir)/config/nvptx/gen-omp-device-properties.sh \
+         "$(srcdir)/config/nvptx" > $@