Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for input1 (0.13 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = opSummary # " operator";
    
      let description = [{
        Performs convolution operation on inputs.
    
        Inputs:
          `inputs[0]`: required: the input activation tensor
          `inputs[1]`: required: the filter weight tensor
          `inputs[2]`: optional: the bias tensor
      }];
    
      let results = (outs TFL_TensorOf<[F32, QI8, QUI8, QI16]>:$output);
    
      let hasOptions = 0b1;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

          for (ClosingFuture<?> input : inputs) {
            input.becomeSubsumedInto(closeables);
          }
        }
    
        /**
         * Returns a new {@code ClosingFuture} pipeline step derived from the inputs by applying a
         * combining function to their values. The function can use a {@link DeferredCloser} to capture
         * objects to be closed when the pipeline is done.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                                   " input ", i, ", expected control input ",
                                   a.input(i), " got ", b.input(i), " expected:\n",
                                   a.DebugString(), "\ngot:\n", b.DebugString());
            }
            return false;
          }
          control_input_a.insert(a.input(i));
          control_input_b.insert(b.input(i));
        } else if (a.input(i) != b.input(i)) {
          if (diff) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        }
        for (auto edge : n->in_edges()) {
          inputs[index] =
              NodeDefBuilder::NodeOut{edge->src()->name(), edge->src_output(),
                                      edge->src()->output_type(edge->src_output())};
        }
      }
      send_from_host_builder.Input(inputs);
      send_from_host_builder.Input(key_placeholder->name(), 0, DT_STRING);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

    void TF_AddInput(TF_OperationDescription* desc, TF_Output input) {
      desc->node_builder.Input(&input.oper->node, input.index);
    }
    
    void TF_AddInputList(TF_OperationDescription* desc, const TF_Output* inputs,
                         int num_inputs) {
      std::vector<NodeBuilder::NodeOut> input_list;
      input_list.reserve(num_inputs);
      for (int i = 0; i < num_inputs; ++i) {
        input_list.emplace_back(&inputs[i].oper->node, inputs[i].index);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // If shape attribute equals input operand's type's shape, fold it to input.
      std::optional<llvm::ArrayRef<int64_t>> shape_constraint = getShape();
      if (type.getShape() == shape_constraint && getInput().getType() == getType())
        return getInput();
    
      // If input operand's type's shape always satisfies the shape attribute, fold
      // it to input.
      if (shape_constraint.has_value() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        # Create and save a simple model that involves a hash table.
        inputs, outputs = self._create_and_save_vocab_table_lookup_qat_model_tf1(
            self._input_saved_model_path, tags, signature_def_key
        )
    
        # Make sure that the desired input key and output key is present.
        self.assertIn('input_vocabs', inputs.keys())
        self.assertIn('lookup', outputs.keys())
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        def output = outputs.file(input.name + ".\${targetColor}")
                        assert output.parentFile.directory && output.parentFile.list().length == 0
                        println "Transforming \${input.name} to \${output.name}"
                        println "Input exists: \${input.exists()}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      state.operands.reserve(num_operands + 1);
      for (int input = 0, e = num_operands + 1; input != e; ++input) {
        if (input < dst_input) {
          state.operands.push_back(dst->getOperand(input));
        } else if (input == dst_input) {
          state.operands.push_back(source->getResult(0));
        } else {
          state.operands.push_back(dst->getOperand(input - 1));
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      Value reshaped_input = builder.create<TF::ReshapeOp>(
          RankedTensorType::get(shape, element_type), input, shape_cst);
      return reshaped_input;
    }
    
    // Create a tensor which is equal to input[begin: begin + size].
    Value BuildSliceOp(ImplicitLocOpBuilder& builder,
                       ConversionPatternRewriter& rewriter, Value input,
                       Value begin, ArrayRef<int64_t> shape, Type idx_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top