Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 776 for inputs_ (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

              TypeAttr::get(cast<MlirTensor>(inputs.front())->getElementType());
        }
      } else if (!arg_def.type_list_attr().empty()) {
        // TODO(aminim): handle ref variable.
        SmallVector<Attribute, 8> types;
        types.reserve(inputs.size());
        for (AbstractTensorHandle* input : inputs)
          types.push_back(TypeAttr::get(cast<MlirTensor>(input)->getElementType()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        }
    
        // Populate inputs.
        // UnidirectionalSequenceRnn is expected to have 5 inputs, and none of them
        // are optional inputs.
        SmallVector<Value, 5> inputs;
        for (int i = 0; i < 5; ++i) {
          inputs.push_back(op->getOperand(i));
        }
    
        // Populate outputs.
        // UnidirectionalSequenceRnn should only have 1 output, and that is the
        // original ophint converted node's 2nd output.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

        def "fails build when packing archive fails"() {
            when:
            file("input.txt") << "data"
    
            // Just a way to induce a packing error, i.e. corrupt/partial archive
            buildFile << """
                apply plugin: "base"
                task customTask {
                    inputs.file "input.txt"
                    outputs.file "build/output" withPropertyName "output"
                    outputs.cacheIf { true }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    )
    
    var Decode cbor.DecMode = func() cbor.DecMode {
    	decode, err := cbor.DecOptions{
    		// Maps with duplicate keys are well-formed but invalid according to the CBOR spec
    		// and never acceptable. Unlike the JSON serializer, inputs containing duplicate map
    		// keys are rejected outright and not surfaced as a strict decoding error.
    		DupMapKey: cbor.DupMapKeyEnforcedAPF,
    
    		// For JSON parity, decoding an RFC3339 string into time.Time needs to be accepted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      // The name assigned to the function which is the import result of the given
      // graph. If empty, a default one will be used.
      std::string graph_func_name;
      // Maps input node names to node data types and shapes.
      InputArrays inputs;
      // name:index strings for the data outputs.
      std::vector<string> outputs;
      // name strings for the control outputs.
      std::vector<string> control_outputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/insert_call_once_op.mlir

      }
    
      func.func @serving_default(%arg0: tensor<i64> {tf_saved_model.index_path = ["x"]}) -> (tensor<*x!tf_type.string> {tf_saved_model.index_path = ["r"]})
      attributes {tf.entry_function = {control_outputs = "", inputs = "input:0", outputs = "hash_table_Lookup/LookupTableFindV2:0"}, tf_saved_model.exported_names = ["serving_default"]} {
        %cst = arith.constant dense<"f"> : tensor<!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/function.cc

    using tensorflow::StatusOr;
    
    // TODO(srbs): Move this to unified execution API.
    tensorflow::Status ExecuteFunction(
        AbstractFunctionPtr trace, AbstractContext* ctx,
        absl::Span<tensorflow::AbstractTensorHandle* const> inputs,
        absl::Span<tensorflow::AbstractTensorHandle*> outputs) {
      // TODO(srbs): Provide a function execution API on ctx so that we do not
      // expose the internals of how functions are to be executed here.
      std::string fname;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

          }
    
          // Collect all the quantized inputs and "clone" the matched op by these
          // inputs.
          SmallVector<Value, 4> inputs;
          inputs.reserve(quantizing_op->getNumOperands());
          for (const auto& operand : quantizing_op->getOperands()) {
            Type operand_type = operand.getType();
            if (operand_type.isa<NoneType>()) {
              inputs.push_back(operand);
              continue;
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

            }
    
            public <T, U> List<U> transformAll(Collection<T> inputs, ValueOrTransformProvider<T, U> valueOrTransformProvider) {
                assert !inputs.isEmpty();
                return cache.useCache(() -> {
    
                    final List<U> results = new ArrayList<>(inputs.size());
                    final List<Callable<Void>> transforms = new ArrayList<>(inputs.size());
                    final Set<HashCode> seen = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

      // The computation operand can either be:
      //   1) a TPUPartitionedInput Op if the input has a non-resource type;
      //   2) a ReadVariableOp else.
      //
      // Iterate through input arguments to the entry block of
      // tf_device.ClusterFunc. For input ops, look for XlaSharding ops.
      // XlaSharding ops can:
      //   1) Directly follow the input argument if input argument has non-resource
      //      types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top