<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in nvptx_target_requires_unified_shared_memory.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>1fff1166 - [OpenMP] Change OpenMP code generation for target region entries</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#1fff1166</link>
        <description>[OpenMP] Change OpenMP code generation for target region entriesThis patch changes the code we generate to enter a target region on thedevice. This is in-line with the new definition in the runtime that wasadded previously. Additionally we implement this in the OpenMPIRBuilderso that this code can be shared with Flang in the future.Reviewed By: ABataevDifferential Revision: https://reviews.llvm.org/D128550

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Fri, 24 Jun 2022 13:13:53 +0000</pubDate>
        <dc:creator>Joseph Huber &lt;jhuber6@vols.utk.edu&gt;</dc:creator>
    </item>
<item>
        <title>532dc62b - [OpaquePtrs][Clang] Add -no-opaque-pointers to tests (NFC)</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#532dc62b</link>
        <description>[OpaquePtrs][Clang] Add -no-opaque-pointers to tests (NFC)This adds -no-opaque-pointers to clang tests whose output willchange when opaque pointers are enabled by default. This isintended to be part of the migration approach described inhttps://discourse.llvm.org/t/enabling-opaque-pointers-by-default/61322/9.The patch has been produced by replacing %clang_cc1 with%clang_cc1 -no-opaque-pointers for tests that fail with opaquepointers enabled. Worth noting that this doesn&apos;t cover all tests,there&apos;s a remaining ~40 tests not using %clang_cc1 that will needa followup change.Differential Revision: https://reviews.llvm.org/D123115

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Thu, 07 Apr 2022 10:03:55 +0000</pubDate>
        <dc:creator>Nikita Popov &lt;npopov@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>fd739804 - [test] Add {{.*}} to make ELF tests immune to dso_local/dso_preemptable/(none) differences</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#fd739804</link>
        <description>[test] Add {{.*}} to make ELF tests immune to dso_local/dso_preemptable/(none) differencesFor a default visibility external linkage definition, dso_local is set for ELF-fno-pic/-fpie and COFF and Mach-O. Since default clang -cc1 for ELF is similarto -fpic (&quot;PIC Level&quot; is not set), this nuance causes unneeded binary format differences.To make emitted IR similar, ELF -cc1 -fpic will default to -fno-semantic-interposition,which sets dso_local for default visibility external linkage definitions.To make this flip smooth and enable future (dso_local as definition default),this patch replaces (function) `define ` with `define{{.*}} `,(variable/constant/alias) `= ` with `={{.*}} `, or inserts appropriate `{{.*}} `.

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Thu, 31 Dec 2020 08:27:11 +0000</pubDate>
        <dc:creator>Fangrui Song &lt;i@maskray.me&gt;</dc:creator>
    </item>
<item>
        <title>da8bec47 - [OpenMP] Add Location Fields to Libomptarget Runtime for Debugging</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#da8bec47</link>
        <description>[OpenMP] Add Location Fields to Libomptarget Runtime for DebuggingSummary:Add support for passing source locations to libomptarget runtime functions using the ident_t struct present in the rest of the libomp API. This will allow the runtime system to give much more insightful error messages and debugging values.Reviewers: jdoerfert grokosDifferential Revision: https://reviews.llvm.org/D87946

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Thu, 19 Nov 2020 16:56:59 +0000</pubDate>
        <dc:creator>Joseph Huber &lt;jhuber6@vols.utk.edu&gt;</dc:creator>
    </item>
<item>
        <title>97e55cfe - [OpenMP] Add Passing in Original Declaration Names To Mapper API</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#97e55cfe</link>
        <description>[OpenMP] Add Passing in Original Declaration Names To Mapper APISummary:This patch adds support for passing in the original delcaration name in the source file to the libomptarget runtime. This will allow the runtime to provide more intelligent debugging messages. This patch takes the original expression parsed from the OpenMP map / update clause and provides a textual representation if it was explicitly mapped, otherwise it takes the name of the variable declaration as a fallback. The information in passed to the runtime in a global array of strings that matches the existing ident_t source location strings using &quot;;name;filename;column;row;;&quot;Reviewers: jdoerfertDifferential Revision: https://reviews.llvm.org/D89802

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Fri, 13 Nov 2020 18:06:41 +0000</pubDate>
        <dc:creator>Joseph Huber &lt;jhuber6@vols.utk.edu&gt;</dc:creator>
    </item>
<item>
        <title>207cf71f - Revert &quot;[OpenMP] Add Passing in Original Declaration Names To Mapper API&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#207cf71f</link>
        <description>Revert &quot;[OpenMP] Add Passing in Original Declaration Names To Mapper API&quot;This reverts commit d981c7b7581efc3ef378709042100e75da0185a0 anda87d7b3d448a16e416d1980b9d6aea99e4c9900b. Test fails under msan.

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Wed, 28 Oct 2020 12:54:00 +0000</pubDate>
        <dc:creator>Benjamin Kramer &lt;benny.kra@googlemail.com&gt;</dc:creator>
    </item>
<item>
        <title>a87d7b3d - [OpenMP] Add Passing in Original Declaration Names To Mapper API</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#a87d7b3d</link>
        <description>[OpenMP] Add Passing in Original Declaration Names To Mapper APISummary:This patch adds support for passing in the original delcaration name in thesource file to the libomptarget runtime. This will allow the runtime to providemore intelligent debugging messages. This patch takes the original expressionparsed from the OpenMP map / update clause and provides a textualrepresentation if it was explicitly mapped, otherwise it takes the name of thevariable declaration as a fallback. The information in passed to the runtime ina global array of strings that matches the existing ident_t source locationstrings using &quot;;name;filename;column;row;;&quot;. Seeclang/test/OpenMP/target_map_names.cpp for an example of the generated outputfor a given map clause.Reviewers: jdoervertDifferential Revision: https://reviews.llvm.org/D89802

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Thu, 22 Oct 2020 18:06:50 +0000</pubDate>
        <dc:creator>Joseph Huber &lt;jhuber6@vols.utk.edu&gt;</dc:creator>
    </item>
<item>
        <title>eaa341fb - [OpenMP] Ensure testing for versions 4.5 and default - Part 1</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#eaa341fb</link>
        <description>[OpenMP] Ensure testing for versions 4.5 and default - Part 1Many OpenMP Clang tests do not RUN for version 4.5 and the defaultversion. This first patch in the series only handles test caseswhich do not require any modifications in the CHECK lines afteradding RUN lines for default version.Reviewed By: ABataevDifferential Revision: https://reviews.llvm.org/D84844

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Thu, 13 Aug 2020 07:27:15 +0000</pubDate>
        <dc:creator>Saiyedul Islam &lt;Saiyedul.Islam@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>537b16e9 - [OpenMP 5.0] Codegen support to pass user-defined mapper functions to runtime</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#537b16e9</link>
        <description>[OpenMP 5.0] Codegen support to pass user-defined mapper functions to runtimeThis patch implements the code generation to use OpenMP 5.0 declare mapper (a.k.a. user-defined mapper) constructs.Patch written by Lingda Li.Differential Revision: https://reviews.llvm.org/D67833

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Thu, 16 Jul 2020 01:10:57 +0000</pubDate>
        <dc:creator>George Rokos &lt;georgios.rokos@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>dbc96b51 - Revert &quot;[CodeGenModule] Assume dso_local for -fpic -fno-semantic-interposition&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#dbc96b51</link>
        <description>Revert &quot;[CodeGenModule] Assume dso_local for -fpic -fno-semantic-interposition&quot;This reverts commit 789a46f2d742e11edaade28cb59a0f4d2a1d770e.Accidentally committed.

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Mon, 03 Feb 2020 18:09:39 +0000</pubDate>
        <dc:creator>Fangrui Song &lt;maskray@google.com&gt;</dc:creator>
    </item>
<item>
        <title>789a46f2 - [CodeGenModule] Assume dso_local for -fpic -fno-semantic-interposition</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#789a46f2</link>
        <description>[CodeGenModule] Assume dso_local for -fpic -fno-semantic-interpositionSummary:Clang -fpic defaults to -fno-semantic-interposition (GCC -fpic defaultsto -fsemantic-interposition).Users need to specify -fsemantic-interposition to get semanticinterposition behavior.Semantic interposition is currently a best-effort feature. There maystill be some cases where it is not handled well.Reviewers: peter.smith, rnk, serge-sans-paille, sfertile, jfb, jdoerfertSubscribers: dschuff, jyknight, dylanmckay, nemanjai, jvesely, kbarton, fedor.sergeev, asb, rbar, johnrusso, simoncook, sabuasal, niosHD, jrtc27, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, arphaman, PkmX, jocewei, jsji, Jim, lenary, s.egerton, pzheng, sameer.abuasal, apazos, luismarques, cfe-commitsTags: #clangDifferential Revision: https://reviews.llvm.org/D73865

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Sun, 02 Feb 2020 20:23:47 +0000</pubDate>
        <dc:creator>Fangrui Song &lt;maskray@google.com&gt;</dc:creator>
    </item>
<item>
        <title>4b343fd8 - [Clang][OpenMP Offload] Create start/end symbols for the offloading entry table with a help of a linker</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#4b343fd8</link>
        <description>[Clang][OpenMP Offload] Create start/end symbols for the offloading entry table with a help of a linkerLinker automatically provides __start_&lt;section name&gt; and __stop_&lt;section name&gt; symbols to satisfy unresolved references if &lt;section name&gt; is representable as a C identifier (see https://sourceware.org/binutils/docs/ld/Input-Section-Example.html for details). These symbols indicate the start address and end address of the output section respectively. Therefore, renaming OpenMP offload entries section name from &quot;.omp.offloading_entries&quot; to &quot;omp_offloading_entries&quot; to use this feature.This is the first part of the patch for eliminating OpenMP linker script (please see https://reviews.llvm.org/D64943).Differential Revision: https://reviews.llvm.org/D68070llvm-svn: 373118

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Fri, 27 Sep 2019 20:00:51 +0000</pubDate>
        <dc:creator>Sergey Dmitriev &lt;serguei.n.dmitriev@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>625f59d1 - [OpenMP] Fix declare target link implementation</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#625f59d1</link>
        <description>[OpenMP] Fix declare target link implementationSummary:This patch fixes the case where variables in different compilation units or the same compilation unit are under the declare target link clause AND have the same name.This also fixes the name clash error that occurs when unified memory is activated.The changes in this patch include:- Pointers to internal variables are given unique names.- Externally visible variables are given the same name as before.- All pointer variables (external or internal) are weakly linked.Reviewers: ABataev, jdoerfert, caomhinReviewed By: ABataevSubscribers: lebedev.ri, guansong, cfe-commitsTags: #clangDifferential Revision: https://reviews.llvm.org/D64592llvm-svn: 367613

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Thu, 01 Aug 2019 21:15:58 +0000</pubDate>
        <dc:creator>Gheorghe-Teodor Bercea &lt;gheorghe-teod.bercea@ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>0034e84a - [OpenMP] Add support for handling declare target to clause when unified memory is required</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#0034e84a</link>
        <description>[OpenMP] Add support for handling declare target to clause when unified memory is requiredSummary:This patch adds support for the handling of the variables under the declare target to clause.The variables in this case are handled like link variables are. A pointer is created on the host and then mapped to the device. The runtime will then copy the address of the host variable in the device pointer.Reviewers: ABataev, AlexEichenberger, caomhinReviewed By: ABataevSubscribers: guansong, jdoerfert, cfe-commitsTags: #clangDifferential Revision: https://reviews.llvm.org/D63108llvm-svn: 363959

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Thu, 20 Jun 2019 18:04:47 +0000</pubDate>
        <dc:creator>Gheorghe-Teodor Bercea &lt;gheorghe-teod.bercea@ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>5254f0a9 - [OpenMP] Avoid emitting maps for target link variables when unified memory is used</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#5254f0a9</link>
        <description>[OpenMP] Avoid emitting maps for target link variables when unified memory is usedSummary: This patch avoids the emission of maps for target link variables when unified memory is present.Reviewers: ABataev, caomhinReviewed By: ABataevSubscribers: guansong, jdoerfert, cfe-commitsTags: #clangDifferential Revision: https://reviews.llvm.org/D60883llvm-svn: 363435

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Fri, 14 Jun 2019 17:58:26 +0000</pubDate>
        <dc:creator>Gheorghe-Teodor Bercea &lt;gheorghe-teod.bercea@ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>93d2c8a6 - [OpenMP] Add test for requires and unified shared memory clause with declare target link</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp#93d2c8a6</link>
        <description>[OpenMP] Add test for requires and unified shared memory clause with declare target linkSummary:This patch adds a test for requires with unified share memory clause when a declare target link is present.This test needs to go in prior to changes to declare target link for comparison purposes.Reviewers: ABataev, caomhinReviewed By: ABataevSubscribers: guansong, jdoerfert, cfe-commitsTags: #clangDifferential Revision: https://reviews.llvm.org/D62407llvm-svn: 361658

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/nvptx_target_requires_unified_shared_memory.cpp</description>
        <pubDate>Fri, 24 May 2019 18:48:42 +0000</pubDate>
        <dc:creator>Gheorghe-Teodor Bercea &lt;gheorghe-teod.bercea@ibm.com&gt;</dc:creator>
    </item>
</channel>
</rss>
