Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 87 for getIpr (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

      auto func_arg_types = llvm::to_vector<4>(func_type.getInputs());
      llvm::SmallDenseMap<llvm::StringRef, int> var_arg_index_by_name;
      for (auto var_handle_op :
           llvm::make_early_inc_range(block.getOps<TF::VarHandleOp>())) {
        if (add_validation && failed(ValidateVarHandle(var_handle_op)))
          return failure();
        // In the case of variables that are not initialized at graph creation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

          if (!call_op->getResult(i).use_empty()) return failure();
        }
      }
      return success();
    }
    
    LogicalResult CheckFusableKerasLstm(func::FuncOp lstm_func, ModuleOp module) {
      for (auto func : module.getOps<func::FuncOp>()) {
        if (func == lstm_func) continue;
        auto result = func.walk([&](CallOpInterface op) {
          if (dyn_cast<func::FuncOp>(op.resolveCallable()) == lstm_func) {
            // Keras LSTM have 5 outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

    std::unordered_map<std::string, std::vector<func::FuncOp>>
    PickSubgraphsPass::CollectSubgraphFuncs(ModuleOp module) {
      std::unordered_map<std::string, std::vector<func::FuncOp>> func_impls;
      for (auto func : module.getOps<func::FuncOp>()) {
        auto interface_name = GetInterFaceName(func);
        if (interface_name.has_value()) {
          auto impls_iter = func_impls.find(*interface_name);
          if (impls_iter == func_impls.end())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

        DefaultGlobalScopedCacheBuilderFactory createGlobalScopedCache(GlobalCacheDir globalCacheDir, UnscopedCacheBuilderFactory unscopedCacheBuilderFactory) {
            return new DefaultGlobalScopedCacheBuilderFactory(globalCacheDir.getDir(), unscopedCacheBuilderFactory);
        }
    
        @Provides
        ScopedListenerManager createListenerManager(ScopedListenerManager parent) {
            return parent.createChild(Scope.UserHome.class);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

            StringBuilder builder = new StringBuilder();
            ArgumentAppender argument = new ArgumentAppender(builder, task.getWorkingDir());
            builder.append("-javaagent:");
            builder.append(agent.getJar().getAbsolutePath());
            builder.append('=');
            argument.append("destfile", getDestinationFile());
            argument.append("append", true);
            argument.append("includes", getIncludes());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

      }
      TF::SideEffectAnalysis side_effect_analysis(module);
      // Use a global path index across functions to make it easier to follow one
      // path for debugging purposes.
      int path_idx = 0;
      for (auto func : module.getOps<func::FuncOp>()) {
        if (func.isExternal()) continue;
        const auto& analysis_for_func =
            side_effect_analysis.GetAnalysisForFunc(func);
        CheckControlDependenciesForFunc(func, analysis_for_func, path_idx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

      llvm::SmallVector<tf_executor::IslandOp, 4> parallel_execute_op_islands;
      getOperation().walk([&](tf_executor::GraphOp graph_op) {
        for (auto island_op : graph_op.getOps<tf_executor::IslandOp>()) {
          if (!island_op.WrapsSingleOp()) {
            island_op.emitError(
                "tf_executor.island must perfectly wrap a single op");
            signalPassFailure();
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. testing/soak/src/integTest/groovy/org/gradle/resolve/DependencyResolutionStressTest.groovy

                    maybeReset()
                    if (ivy == null) {
                        ivy = ivyGenerator.regenerate()
                    }
                    return ivy
                }
            }
    
            Resource getJar() {
                synchronized (lock) {
                    maybeReset()
                    if (jar == null) {
                        jar = jarGenerator.regenerate()
                    }
                    return jar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            final OsCpuObj osCpuObj = new OsCpuObj();
            osObj.cpu = osCpuObj;
            osCpuObj.percent = osProbe.getSystemCpuPercent();
            final OsStats osStats = osProbe.osStats();
            osObj.loadAverages = osStats.getCpu().getLoadAverage();
            return osObj;
        }
    
        private EngineObj getEngineObj() {
            final EngineObj engineObj = new EngineObj();
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

        // Non-quantizable op
        if (!op->hasAttr(kQuantTraitAttrName)) return failure();
        StringRef function_name = f_attr.getValue();
        // TODO(b/228928859): Improve the getter function to match attributes rather
        // than function name.
        if (!function_name.starts_with("composite_")) {
          return failure();
        }
    
        if (function_name.contains("depthwise_conv2d")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top