Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for InputList (0.13 sec)

  1. tensorflow/cc/framework/ops.h

    class InputList {
     public:
      /// Implicitly convert a list of outputs to a list of inputs. This is useful
      /// to write code such as ops::Concat(ops::Split(x, 4)).
      InputList(const OutputList& out) {  // NOLINT(runtime/explicit)
        for (auto const& x : out) {
          inputs_.push_back(x);
        }
      }
    
      InputList(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Collections2.java

        final ImmutableList<E> inputList;
        final Comparator<? super E> comparator;
        final int size;
    
        OrderedPermutationCollection(Iterable<E> input, Comparator<? super E> comparator) {
          this.inputList = ImmutableList.sortedCopyOf(comparator, input);
          this.comparator = comparator;
          this.size = calculateSize(inputList, comparator);
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Collections2.java

        final ImmutableList<E> inputList;
        final Comparator<? super E> comparator;
        final int size;
    
        OrderedPermutationCollection(Iterable<E> input, Comparator<? super E> comparator) {
          this.inputList = ImmutableList.sortedCopyOf(comparator, input);
          this.comparator = comparator;
          this.size = calculateSize(inputList, comparator);
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. tensorflow/cc/ops/const_op.h

                 const TensorShape shape) {
      return Const(scope, Input::Initializer(v, shape));
    }
    
    std::vector<NodeBuilder::NodeOut> AsNodeOutList(const Scope& scope,
                                                    const InputList& inp);
    
    /// }@
    
    }  // namespace ops
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 17 09:17:01 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/cc/ops/const_op.cc

      return NodeBuilder::NodeOut{transformed.node(), transformed.index()};
    }
    
    std::vector<NodeBuilder::NodeOut> AsNodeOutList(const Scope& scope,
                                                    const InputList& inp) {
      std::vector<NodeBuilder::NodeOut> out;
      for (const auto& i : inp) {
        const auto node_out = AsNodeOut(scope, i);
        if (!scope.ok()) {
          return {};
        }
        out.push_back(node_out);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 20:58:54 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

                      "_1 = ", "tensorflow::ops::Placeholder(scope.WithOpName(\"",
                      arg.name(), "\"), ", type, ");\n");
                  strings::StrAppend(
                      out, absl::Substitute("    InputList $0({$0_0, $0_1});\n",
                                            arg.name()));
                } else {
                  strings::StrAppend(
                      out, "    auto ", arg.name(), " = ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/cc_op_gen_util.cc

        const auto& api_def_arg = *FindInputArg(api_def.arg_order(i), api_def);
        arg_types.push_back(strings::StrCat(
            "::tensorflow::", ArgIsList(arg) ? "InputList" : "Input"));
        arg_names.push_back(AvoidCPPKeywords(api_def_arg.rename_to()));
    
        // TODO(keveman): Include input type information.
        StringPiece description = api_def_arg.description();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    // it is not present.  The new list will be returned.
    func setConditionInList(inputList []autoscalingv2.HorizontalPodAutoscalerCondition, conditionType autoscalingv2.HorizontalPodAutoscalerConditionType, status v1.ConditionStatus, reason, message string, args ...interface{}) []autoscalingv2.HorizontalPodAutoscalerCondition {
    	resList := inputList
    	var existingCond *autoscalingv2.HorizontalPodAutoscalerCondition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top