<?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 vector_utils.mlir</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>227ed2f4 - [mlir][NFC] Update textual references of `func` to `func.func` in Affine/ tests</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir#227ed2f4</link>
        <description>[mlir][NFC] Update textual references of `func` to `func.func` in Affine/ testsThe special case parsing of `func` operations is being removed.

            List of files:
            /llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir</description>
        <pubDate>Wed, 20 Apr 2022 23:13:44 +0000</pubDate>
        <dc:creator>River Riddle &lt;riddleriver@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a54f4eae - [MLIR] Replace std ops with arith dialect ops</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir#a54f4eae</link>
        <description>[MLIR] Replace std ops with arith dialect opsPrecursor: https://reviews.llvm.org/D110200Removed redundant ops from the standard dialect that were moved to the`arith` or `math` dialects.Renamed all instances of operations in the codebase and in tests.Reviewed By: rriddle, jpienaarDifferential Revision: https://reviews.llvm.org/D110797

            List of files:
            /llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir</description>
        <pubDate>Tue, 12 Oct 2021 23:14:57 +0000</pubDate>
        <dc:creator>Mogball &lt;jeffniu22@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e2310704 - [MLIR] Create memref dialect and move dialect-specific ops from std.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir#e2310704</link>
        <description>[MLIR] Create memref dialect and move dialect-specific ops from std.Create the memref dialect and move dialect-specific opsfrom std dialect to this dialect.Moved ops:AllocOp -&gt; MemRef_AllocOpAllocaOp -&gt; MemRef_AllocaOpAssumeAlignmentOp -&gt; MemRef_AssumeAlignmentOpDeallocOp -&gt; MemRef_DeallocOpDimOp -&gt; MemRef_DimOpMemRefCastOp -&gt; MemRef_CastOpMemRefReinterpretCastOp -&gt; MemRef_ReinterpretCastOpGetGlobalMemRefOp -&gt; MemRef_GetGlobalOpGlobalMemRefOp -&gt; MemRef_GlobalOpLoadOp -&gt; MemRef_LoadOpPrefetchOp -&gt; MemRef_PrefetchOpReshapeOp -&gt; MemRef_ReshapeOpStoreOp -&gt; MemRef_StoreOpSubViewOp -&gt; MemRef_SubViewOpTransposeOp -&gt; MemRef_TransposeOpTensorLoadOp -&gt; MemRef_TensorLoadOpTensorStoreOp -&gt; MemRef_TensorStoreOpTensorToMemRefOp -&gt; MemRef_BufferCastOpViewOp -&gt; MemRef_ViewOpThe roadmap to split the memref dialect from std is discussed here:https://llvm.discourse.group/t/rfc-split-the-memref-dialect-from-std/2667Differential Revision: https://reviews.llvm.org/D98041

            List of files:
            /llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir</description>
        <pubDate>Wed, 10 Feb 2021 12:53:11 +0000</pubDate>
        <dc:creator>Julian Gross &lt;julian.gross@dfki.de&gt;</dc:creator>
    </item>
<item>
        <title>a89035d7 - Revert &quot;[MLIR] Create memref dialect and move several dialect-specific ops from std.&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir#a89035d7</link>
        <description>Revert &quot;[MLIR] Create memref dialect and move several dialect-specific ops from std.&quot;This commit introduced a cyclic dependency:Memref dialect depends on Standard because it used ConstantIndexOp.Std depends on the MemRef dialect in its EDSC/Intrinsics.hWorking on a fix.This reverts commit 8aa6c3765b924d86f623d452777eb76b83bf2787.

            List of files:
            /llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir</description>
        <pubDate>Thu, 18 Feb 2021 11:49:52 +0000</pubDate>
        <dc:creator>Alexander Belyaev &lt;pifon@google.com&gt;</dc:creator>
    </item>
<item>
        <title>8aa6c376 - [MLIR] Create memref dialect and move several dialect-specific ops from std.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir#8aa6c376</link>
        <description>[MLIR] Create memref dialect and move several dialect-specific ops from std.Create the memref dialect and move several dialect-specific ops withoutdependencies to other ops from std dialect to this dialect.Moved ops:AllocOp -&gt; MemRef_AllocOpAllocaOp -&gt; MemRef_AllocaOpDeallocOp -&gt; MemRef_DeallocOpMemRefCastOp -&gt; MemRef_CastOpGetGlobalMemRefOp -&gt; MemRef_GetGlobalOpGlobalMemRefOp -&gt; MemRef_GlobalOpPrefetchOp -&gt; MemRef_PrefetchOpReshapeOp -&gt; MemRef_ReshapeOpStoreOp -&gt; MemRef_StoreOpTransposeOp -&gt; MemRef_TransposeOpViewOp -&gt; MemRef_ViewOpThe roadmap to split the memref dialect from std is discussed here:https://llvm.discourse.group/t/rfc-split-the-memref-dialect-from-std/2667Differential Revision: https://reviews.llvm.org/D96425

            List of files:
            /llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir</description>
        <pubDate>Wed, 10 Feb 2021 12:53:11 +0000</pubDate>
        <dc:creator>Julian Gross &lt;julian.gross@dfki.de&gt;</dc:creator>
    </item>
<item>
        <title>636db7f8 - [MLIR] Fix vector::TransferWriteOp builder losing permutation map</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir#636db7f8</link>
        <description>[MLIR] Fix vector::TransferWriteOp builder losing permutation mapSupervectorizer pass uses this builder and loses the permutation map.Reviewed By: nicolasvasilacheDifferential Revision: https://reviews.llvm.org/D92145

            List of files:
            /llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir</description>
        <pubDate>Thu, 03 Dec 2020 17:51:47 +0000</pubDate>
        <dc:creator>Max Kudryavtsev &lt;makudrya@microsoft.com&gt;</dc:creator>
    </item>
<item>
        <title>93936da9 - [mlir][Affine][VectorOps] Fix super vectorizer utility (D85869)</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir#93936da9</link>
        <description>[mlir][Affine][VectorOps] Fix super vectorizer utility (D85869)Adding missing code that should have been part of &quot;D85869: Utility tovectorize loop nest using strategy.&quot;Reviewed By: nicolasvasilacheDifferential Revision: https://reviews.llvm.org/D88346

            List of files:
            /llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir</description>
        <pubDate>Mon, 28 Sep 2020 23:15:13 +0000</pubDate>
        <dc:creator>Diego Caballero &lt;diego.caballero@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>b8737614 - [MLIR][NFC] Move some of the affine transforms / tests to dialect dirs</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir#b8737614</link>
        <description>[MLIR][NFC] Move some of the affine transforms / tests to dialect dirsMove some of the affine transforms and their test cases to theirrespective dialect directory. This patch does not complete the move, buttakes care of a good part.Renames: prefix &apos;affine&apos; to affine loop tiling cl options,vectorize -&gt; super-vectorizeSigned-off-by: Uday Bondhugula &lt;uday@polymagelabs.com&gt;Differential Revision: https://reviews.llvm.org/D76565

            List of files:
            /llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/vector_utils.mlir</description>
        <pubDate>Sun, 22 Mar 2020 11:25:36 +0000</pubDate>
        <dc:creator>Uday Bondhugula &lt;uday@polymagelabs.com&gt;</dc:creator>
    </item>
</channel>
</rss>
