Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for moduleName (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

        const XlaShapeLayoutHelpers::ShapeDeterminationFns shape_determination_fns =
            {},
        llvm::MutableArrayRef<std::unique_ptr<mlir::Pass>>
            custom_legalization_passes = {},
        llvm::StringRef module_name = llvm::StringRef());
    
    // Creates a MLIR pipeline that lowers MLIR module to MHLO dialect. The input
    // module should only contain operations in tf dialect. For example, if the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

            }
            scriptBuilder.propertyAssignment(null, "rootProject.name", mvnProjectName);
            Set<MavenProject> modules = modules(projects, true);
    
            List<String> moduleNames = new ArrayList<>();
            Map<String, String> artifactIdToDir = new LinkedHashMap<>();
            for (MavenProject project : modules) {
                String fqn = fqn(project, projects);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

      if (VLOG_IS_ON(2)) {
        llvm::StringRef module_name = llvm::StringRef();
        constexpr const char* kDebugGroupBridgePhase2 =
            "v1_prepare_and_export_to_library";
        internal::EnablePassIRPrinting(manager, kDebugGroupBridgePhase2,
                                       module_name);
      }
    
      auto prepare_status = manager.run(module);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

         *
         * @param configuration Compiler configuration.
         *  It is recommended to submit at least the module name ([CommonConfigurationKeys.MODULE_NAME])
         *  and language version settings ([CommonConfigurationKeys.LANGUAGE_VERSION_SETTINGS]).
         *
         * @param target Compilation target platform.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

            this.processorDeclarations = processorDeclarations;
            this.annotationProcessorPath = annotationProcessorPath;
            this.result = result;
        }
    
        @Override
        public void addModules(Iterable<String> moduleNames) {
        }
    
        @Override
        public void setProcessors(Iterable<? extends Processor> processors) {
            throw new UnsupportedOperationException("This decorator already handles annotation processing");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top