Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 183 for moduleName (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.cc

          module.getContext(), /*propagate=*/false,
          /*filter_stack=*/!VLOG_IS_ON(1));
    
      if (VLOG_IS_ON(1) ||
          DEBUG_DATA_DUMPER()->ShouldDump(module_name.str(), kDebugGroupMain)) {
        ::tensorflow::DumpMlirOpToFile(
            DEBUG_DATA_DUMPER()->GetDumpFilename(
                module_name.str(), kDebugGroupMain,
                "tfxla_bridge_v1_tfdialect_to_executor_before"),
            module, llvm::StringRef(), &tf_to_executor);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 03:41:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks.cc

                              llvm::StringRef module_name) {
      // Print the whole module after each pass, which requires disabling
      // multi-threading as well.
      pm.getContext()->disableMultithreading();
      pm.enableIRPrinting(std::make_unique<::tensorflow::DataDumperLoggerConfig>(
          [module_name, dump_group_name](const std::string& pass_tag_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 14:26:22 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

    struct TPURewritePass : public impl::TPURewritePassBase<TPURewritePass> {
      explicit TPURewritePass(llvm::StringRef _module_name)
          : module_name(_module_name) {}
    
      void runOnOperation() override;
    
      llvm::StringRef module_name;
    };
    
    // Creates a missing attribute error message.
    std::string CreateMissingAttributeMsg(llvm::StringRef attribute) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

        }
    
        private ImmutableList<File> loadDistributionFiles(List<TestFrameworkDistributionModule> moduleNames) {
            return loadFromDistribution(moduleNames, ClassPath::getAsFiles);
        }
    
        private ImmutableList<URL> loadDistributionUrls(List<TestFrameworkDistributionModule> moduleNames) {
            return loadFromDistribution(moduleNames, ClassPath::getAsURLs);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaProjectFixture.groovy

            }
        }
    
        ProjectModules getModules() {
            def projectModuleManager = ipr.component.find { it.@name == "ProjectModuleManager" }
            def moduleNames = ******@****.***t {it.text()}
            return new ProjectModules(moduleNames)
        }
    
        @Override
        void assertContains(IdeProjectFixture project) {
            assert project instanceof IdeaModuleFixture
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      for (const auto& creator : pass_instrumentors) {
        tf2xla.addInstrumentation(creator());
      }
      if (DEBUG_DATA_DUMPER()->ShouldDump(module_name.str(), kDebugGroupMain) ||
          VLOG_IS_ON(1)) {
        tensorflow::DumpMlirOpToFile(
            DEBUG_DATA_DUMPER()->GetDumpFilename(module_name.str(), kDebugGroupMain,
                                                 "legalize_hlo_before"),
            module_op, "", &tf2xla);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks.h

    // Note a side effect of this method is that multi threading will be disabled.
    void EnablePassIRPrinting(mlir::PassManager& pm,
                              const std::string& dump_group_name,
                              llvm::StringRef module_name = llvm::StringRef());
    
    };  // namespace internal
    };  // namespace tf2xla
    };  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 14:26:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.h

    //   replicated, e.g. CPU/GPU graphs. is_in_fallback_enabled_mode - Whether this
    //   was called with fallback to the non-MLIR Bridge. This is just for logging
    //   purposes and doesn't affect logic. module_name - What the input module name
    //   is for debugging help.
    //
    // Output: Modifies the input module in place with clustered operations.
    //   status - Whether the transformation to cluster the input MLIR module was
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/IncrementalCompileTask.java

                throw new UnsupportedOperationException("Unexpected Java compile task: " + delegate.getClass().getName());
            }
        }
    
        @Override
        public void addModules(Iterable<String> moduleNames) {
            delegate.addModules(moduleNames);
        }
    
        @Override
        public void setProcessors(Iterable<? extends Processor> processors) {
            delegate.setProcessors(processors);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.h

    namespace tf2xla {
    namespace internal {
    
    // Given the pass manager, add Bridge passes to cluster the replicated input
    // graphs.
    void AddReplicatedBridgeClusteringPipelinePasses(
        mlir::OpPassManager& pm, llvm::StringRef module_name = llvm::StringRef());
    
    // Same as above but for non replicated graphs.
    void AddNonReplicatedBridgeClusteringPipelinePasses(mlir::OpPassManager& pm);
    
    };  // namespace internal
    };  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:39:15 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top