Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for setSecond (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

        auto it = id_to_resource_values_.find(id);
        if (it == id_to_resource_values_.end()) {
          return {};  // return empty set
        }
        return it->getSecond();
      }
    
      // Returns true iff given resource is allocated by op with
      // `UniqueResourceAllocation` trait. This can be utilized for while-loop
      // parallelization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

            }
          }
          for (auto output : outputs_replaced) {
            output.getFirst().replaceAllUsesWith(
                quantized_op->getResult(output.getSecond()));
          }
        }
        return success();
      }
    };
    
    // Populates common patterns that are usually compute heavy or memory bound.
    void PopulateCommonQuantizationPatterns(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

        }
    
        @Override
        protected void writeHeaders(final HttpServletResponse response) {
            ComponentUtil.getFessConfig().getApiDashboardResponseHeaderList().forEach(e -> response.setHeader(e.getFirst(), e.getSecond()));
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

          auto map_iter = chain_resource_to_ops_map.find(resource_and_device);
          if (map_iter == chain_resource_to_ops_map.end()) continue;
          OperationSetTy& resource_ops = map_iter->getSecond();
    
          // Add dependencies between all ops that access current resource and chain
          // source and sink.
          for (Operation* op : resource_ops) {
            if (processed_ops.contains(op)) continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      //     are larger than 1.
      for (auto argnum_and_convolution : argnum_and_convolutions) {
        auto arg_num = argnum_and_convolution.getFirst();
        auto conv2d_and_block_sizes = argnum_and_convolution.getSecond();
        // Continue if number of users of the block argment doesn't equal to number
        // of transformable convolutions and there is no qualified convolution
        // for transform or block size is smaller than 2.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

              block.addArgument(resource_type, var_handle_op.getLoc()));
        } else {
          var_handle_op.getResource().replaceAllUsesWith(
              block.getArgument(it.first->getSecond()));
        }
        var_handle_op.erase();
      }
    
      if (!var_handle_shared_names->empty())
        function.setType(FunctionType::get(function.getContext(), func_arg_types,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

          // Add resource write.
          resource_updates->emplace_back();
          XlaResourceUpdate& resource_update = resource_updates->back();
          resource_update.input_index = it->getSecond();
          resource_update.modified = true;
          TF_RETURN_IF_ERROR(ConvertToDataType(tensor_type, &resource_update.type));
          TF_RETURN_IF_ERROR(XLAShapeToTensorShape(shape, &resource_update.shape));
          continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

          auto p = exported_name_to_op.insert({exported_name, &op});
          if (!p.second) {
            return op.emitError()
                .append("duplicate exported name '", exported_name, "'")
                .attachNote(p.first->getSecond()->getLoc())
                .append("previously seen here");
          }
        }
      }
      for (auto func : module.getOps<func::FuncOp>()) {
        const bool is_exported = IsExported(func);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                    class NestedBean {
                        @Input getFirst() {
                            count("nestedInputValue")
                            return "first"
                        }
    
                        @Input getSecond() {
                            return "second"
                        }
                    }
                }
    
                task myTask(type: CustomTask) {
                    evaluationCountService = evaluationCount
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

                    }
                }
            }
    
            formSchemeList.forEach(p -> {
                final FormScheme scheme = p.getFirst();
                final Credentials credentials = p.getSecond();
                scheme.authenticate(credentials, (request, consumer) -> {
    
                    // request header
                    for (final Header header : requestHeaderList) {
                        request.addHeader(header);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
Back to top