Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,086 for dissect (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_opt.cc

    ==============================================================================*/
    
    #include "mlir/Dialect/Func/Extensions/AllExtensions.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/Dialect/SCF/IR/SCF.h"  // from @llvm-project
    #include "mlir/Dialect/Shape/IR/Shape.h"  // from @llvm-project
    #include "mlir/InitAllDialects.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:20:34 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/annotations/FirIdeDependentAnalysisSourceModuleAnalysisApiAnnotationsOnDeclarationsTestGenerated.java

      @Nested
      @TestMetadata("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct")
      @TestDataPath("$PROJECT_ROOT")
      public class Direct {
        @Test
        @TestMetadata("aliasedThrowsOnFunction.kt")
        public void testAliasedThrowsOnFunction() {
          runTest("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/aliasedThrowsOnFunction.kt");
        }
    
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 13 09:31:11 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

        for (Operation& op : block.getOperations()) {
          StringRef dialect = op.getName().getDialectNamespace();
          for (Region& region : op.getRegions()) {
            // When processing nested operations, move all ops (except for func.*)
            // that aren't of the parent dialect into a function or their own.
            llvm::SmallDenseSet<StringRef> parent_dialect = {dialect, "func"};
            processRegion(region, counter, parent_dialect, module);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/tfr_wrapper.cc

    #include "llvm/Support/MemoryBuffer.h"
    #include "llvm/Support/SMLoc.h"
    #include "llvm/Support/SourceMgr.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/SCF/IR/SCF.h"  // from @llvm-project
    #include "mlir/Dialect/Shape/IR/Shape.h"  // from @llvm-project
    #include "mlir/IR/AsmState.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 13 06:54:12 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

                    }
                """
    
                file("direct/build.gradle") << """
                    plugins {
                        id 'java'
                        id 'jacoco'
                    }
    
                    dependencies {
                        implementation project(":transitive")
                    }
                """
                file("direct/src/main/java/direct/Multiplier.java").java """
                    package direct;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    }
    ```
    
    ## TensorFlow Executor Dialect
    
    The `tf_executor` dialect is intended to model the current TensorFlow executor
    semantics and (when combined with the `tf` dialect) can represent arbitrary
    TensorFlow 1.x and 2.x graphs. As such it follows the executor model, including
    deadness propagation, concurrent semantics, and control dependencies. The
    `tf_executor` dialect defines two dialect-specific types:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_lazy_upgrade_lazy.txt

    module use
    
    go 1.17
    
    require (
    	direct v0.0.0
    	example.com/lazyupgrade v0.1.0
    )
    
    replace (
    	direct => ./direct
    	example.com/lazyupgrade v0.1.0 => ./lazyupgrade@v0.1.0
    	example.com/lazyupgrade v0.1.1 => ./lazyupgrade@v0.1.1
    )
    -- usedirect/usedirect.go --
    package use
    
    import _ "example.com/lazyupgrade"
    -- useindirect/useindirect.go --
    package use
    
    import _ "direct"
    -- direct/go.mod --
    module direct
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 30 17:58:12 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/ir/BUILD

                "QuantOps.cc.inc",
            ),
            (
                [
                    "-gen-dialect-decls",
                    "-dialect=quantfork",
                ],
                "QuantOpsDialect.h.inc",
            ),
            (
                [
                    "-gen-dialect-defs",
                    "-dialect=quantfork",
                ],
                "QuantOpsDialect.cc.inc",
            ),
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 29 02:59:58 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_dialect.td

    include "tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.td"
    
    // TODO(chky,rohitju): Unify this dialect with tfrt_fallback_sync dialect after
    // vrooml is using the new interpreter.
    def TensorflowMlrt_Dialect : Dialect {
      let name = "tf_mlrt";
    
      let description = [{
        The TF MLRT Dialect.
      }];
    
      let cppNamespace = "::tensorflow::tf_mlrt";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/annotations/Fe10IdeNormalAnalysisSourceModuleAnalysisApiAnnotationsOnDeclarationsTestGenerated.java

      @Nested
      @TestMetadata("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct")
      @TestDataPath("$PROJECT_ROOT")
      public class Direct {
        @Test
        @TestMetadata("aliasedThrowsOnFunction.kt")
        public void testAliasedThrowsOnFunction() {
          runTest("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/aliasedThrowsOnFunction.kt");
        }
    
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 13 09:31:11 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top