Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 542 for input1 (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

                          arg_types, arg_locs);
    
      IRMapping mapper;
      // stablehlo_func_op has 1 extra arg for platform index.
      for (auto [input, stablehlo_func_arg] : llvm::zip_equal(
               inputs, stablehlo_func_op.getArguments().take_back(inputs.size()))) {
        mapper.map(input, stablehlo_func_arg);
      }
    
      for (Operation* subgraph_op : llvm::reverse(reverse_subgraph)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Functions.java

        return new FunctionForMapNoDefault<>(map);
      }
    
      /**
       * Returns a function which performs a map lookup with a default value. The function created by
       * this method returns {@code defaultValue} for all inputs that do not belong to the map's key
       * set. See also {@link #forMap(Map)}, which throws an exception in this case.
       *
       * <p><b>Java 8+ users:</b> you can just write the lambda expression {@code k ->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_function.cc

        TF_EXCLUSIVE_LOCKS_REQUIRED(fn_body->mu) {
      input_tensors->reserve(ninputs);
      for (int i = 0; i < ninputs; ++i) {
        Node* node = inputs[i].oper ? &inputs[i].oper->node : nullptr;
        int idx = inputs[i].index;
    
        TF_RETURN_WITH_CONTEXT_IF_ERROR(
            fn_body->graph.IsValidOutputTensor(node, idx),
            "Encountered while processing input ", i, " into function '", fn_name,
            "'");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

              GetCompsiteFunctionName(op);
          if (!composite_function_name.has_value()) return failure();
    
          // Quantize inputs of quantizable composite functions.
          for (OpOperand &input : op->getOpOperands()) {
            Type element_type = getElementTypeOrSelf(input.get().getType());
            // Non-float cases won't be calibrated.
            if (!element_type.isF32()) {
              continue;
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            visitProperties(task)
    
            then:
            _ * visitor.visitNested() >> true
            1 * visitor.visitInputProperty('bean', { it.call() == null }, false)
        }
    
        def "cycle in nested inputs is detected"() {
            def task = project.tasks.create("myTask", TaskWithNestedObject)
            def cycle = new Tree(value: "cycle", left: new Tree(value: "left"))
            cycle.right = cycle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

            return false;
          }
    
          // Special case handling for UnidirectionalSequenceLSTMOp, which doesn't
          // support partial quantization of its inputs.
          // Below, we check all of the input constants for the
          // UnidirectionalSequenceLSTMOp to see if any of them would not be
          // quantized due to not meeting the minimum_elements_for_weights
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterables.java

      @SafeVarargs
      public static <T extends @Nullable Object> Iterable<T> concat(Iterable<? extends T>... inputs) {
        return FluentIterable.concat(inputs);
      }
    
      /**
       * Combines multiple iterables into a single iterable. The returned iterable has an iterator that
       * traverses the elements of each iterable in {@code inputs}. The input iterators are not polled
       * until necessary.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_hashtable_ops_as_args.mlir

    // CHECK: "tf.LookupTableSizeV2"(%arg1)
    // CHECK: "tf.LookupTableFindV2"(%arg1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 05:41:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

    LogicalResult BuildExecuteOp(
        const int core_id, llvm::ArrayRef<xla::OpSharding> output_sharding_config,
        llvm::ArrayRef<Value> inputs, tf_device::ClusterFuncOp cluster_func,
        OpBuilder* builder, TF::TPUExecuteOp* execute_op) {
      // TODO(b/139377366): Need to snapshot all resource variable inputs in
      // follow-up CLs.
      llvm::SmallVector<Type, 4> output_types;
      llvm::SmallVector<int, 4> cluster_to_core_index;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      // fully qualified) or a short form with a single type (in which case the data
      // input and the outputs are all using this type).
      if (FunctionType type = mlir::dyn_cast<FunctionType>(types.front())) {
        // One data input, and any number of control inputs.
        if (type.getNumInputs() >= 1) {
          result.types.assign(type.getResults().begin(), type.getResults().end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top