Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for inputs_0 (0.16 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training-16bits.mlir

    // CHECK-SAME: %[[input_0]],
    // CHECK-SAME: %[[input_1]], %[[input_2]], %[[input_3]], %[[input_4]],
    // CHECK-SAME: %[[input_5]], %[[input_6]], %[[input_7]], %[[input_8]],
    // CHECK-SAME: %[[input_9]], %[[input_9]], %[[input_9]],
    // CHECK-SAME: %[[input_10]], %[[input_11]], %[[input_12]], %[[input_13]],
    // CHECK-SAME: %[[input_9]], %[[input_9]],
    // CHECK-SAME: %[[input_14]], %[[input_15]],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    %9 = "tf.opJ"() : () -> tensor<i1>
    %output:8 = tf_device.replicate([%0, %1] as %input_0: tensor<i32>,
                                    [%2, %3] as %input_1: tensor<f32>,
                                    [%4, %5] as %input_2: tensor<!tf_type.resource>,
                                    [%6, %7] as %input_3: tensor<!tf_type.string>,
                                    %8 as %input_4: tensor<!tf_type.variant>)
                    {n = 2 : i32,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                    @InputFiles FileCollection inputs1
                    @InputFiles FileCollection inputs2
    
                    @OutputDirectory File output = project.buildDir
    
                    @TaskAction void action() {}
                }
            """
    
            buildFile << """
                task test(type: TaskWithTwoFileCollectionInputs) {
                    inputs1 = files("input1.txt", "input2.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/partially_decluster_pass_test.cc

      tensorflow::Scope s = tensorflow::Scope::NewRootScope();
      Output input_a = ops::Placeholder(s.WithOpName("input_a"), DT_INT32,
                                        ops::Placeholder::Attrs{});
      Output input_b = ops::Placeholder(s.WithOpName("shape_b"), DT_FLOAT,
                                        ops::Placeholder::Attrs{});
      Output mul = ops::Mul(s.WithOpName("mul"), input_b, input_b);
      Output shape_of_mul = ops::Shape(s.WithOpName("shape_of_mul"), mul);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/ops.h

          : inputs_(inputs.begin(), inputs.end()) {}
    
      InputList(
          const std::initializer_list<Output>& out) {  // NOLINT(runtime/explicit)
        for (auto const& x : out) {
          inputs_.push_back(x);
        }
      }
    
      typename std::vector<Input>::iterator begin() { return inputs_.begin(); }
      typename std::vector<Input>::iterator end() { return inputs_.end(); }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      std::vector<TFE_TensorHandle*> compute_fn_inputs;
      TFE_TensorHandle* input_a = TestScalarTensorHandle(ctx, 2.0f);
      TFE_TensorHandle* input_b = TestScalarTensorHandle(ctx, 1.0f);
      compute_fn_inputs.push_back(input_a);
      compute_fn_inputs.push_back(input_b);
    
      TFE_Op* compute_fn_op = TF_ConcreteFunctionMakeCallOp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. tensorflow/c/while_loop_test.cc

      }
    
      void Run(const std::vector<TF_Output>& run_outputs,
               std::initializer_list<int> input_values) {
        DCHECK_EQ(inputs_.size(), input_values.size());
        std::vector<std::pair<TF_Operation*, TF_Tensor*>> inputs(inputs_.size());
        int i = 0;
        for (int v : input_values) {
          inputs[i] = {inputs_[i].oper, Int32Tensor(v)};
          ++i;
        }
        // TODO(skyewm): use std::make_unique or absl::make_unique when possible.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_unified_experimental_graph.cc

        TF_AddInput(op_.get(), t->output_);
        return absl::OkStatus();
      }
      Status AddInputList(absl::Span<AbstractTensorHandle* const> inputs) override {
        std::vector<TF_Output> tf_outputs(inputs.size());
        for (int i = 0; i < inputs.size(); i++) {
          GraphTensor* t = dyn_cast<GraphTensor>(inputs[i]);
          if (!t) {
            return tensorflow::errors::InvalidArgument(
                "Unable to cast input to GraphTensor");
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_launch_util_test.cc

      std::vector<const Tensor*> inputs;
      inputs.push_back(a);
      inputs.push_back(b);
      TF_ASSERT_OK_AND_ASSIGN(auto execute_outputs,
                              RunExecutable(inputs, {}, result, executable));
    
      TF_EXPECT_OK(PopulateCtxOutputsFromPjRtExecutableOutputs(
          /*num_missing_prefix_ctx_inputs=*/0, inputs, {}, *result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/configuration-cache/inputs-report.png

    inputs-report.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top