Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 351 for inputs_1 (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/output-shapes-attr.mlir

      func.return %graph#0 : tensor<2xi32>
    }
    
    // Test with a TPUPartitionedCallOp that is not inlined.
    func.func @dont_inline_tpu_partitioned_call(%arg0: tensor<2xi32> {tf._user_specified_name = "inputs_0"}, %arg1: tensor<2xi32> {tf._user_specified_name = "inputs_1"}) -> tensor<2xi32> {
      %graph = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

            value: "\n\003c:0\022\010c/Assign\032\010c/read:0"
          }
        }
      }
      signature_def {
        key: "classify_x2_to_y3"
        value {
          inputs {
            key: "inputs"
            value {
              name: "x2:0"
              dtype: DT_FLOAT
              tensor_shape {
                dim {
                  size: -1
                }
                dim {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

    // CHECK: %[[lstm:.*]] = "tfl.unidirectional_sequence_lstm"(%[[input_0]], %[[input_1]], %[[input_2]], %[[input_3]], %[[input_4]], %[[input_5]], %[[input_6]], %[[input_7]], %[[input_8]],
    // CHECK-SAME: %[[input_9]], %[[input_10]], %[[input_11]], %[[input_12]], %[[input_13]], %[[input_14]], %[[input_15]], %[[input_16]], %[[input_17]], %[[input_18]], %[[input_19]],
    // CHECK-SAME: %[[input_20]], %[[input_21]], %[[input_22]], %[[input_23]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training-16bits.mlir

    // 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]],
    // CHECK-SAME: %[[input_9]], %[[input_9]], %[[input_9]], %[[input_9]]) <{
    // CHECK-SAME: asymmetric_quantize_inputs = false,
    // CHECK-SAME: cell_clip = 1.000000e+01 : f32,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/jit/tests/device_compiler_test_helper.cc

        RunOptions run_options;
    
        Tensor input_a = CreateInputTensor(shape, 0);
        Tensor input_b = CreateInputTensor(shape, shape.num_elements());
        Tensor input_c = CreateInputTensor(shape, 2 * shape.num_elements());
        TF_RETURN_IF_ERROR(session->Run(
            run_options,
            {std::make_pair("a", input_a), std::make_pair("b", input_b),
             std::make_pair("c", input_c)},
            {"m"}, {}, &golden_output_tensors, nullptr));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/cc/framework/ops.cc

    }
    
    Operation::Inputs Operation::GetInputs(Node* node) {
      Operation::Inputs inputs;
      if (node != nullptr) {
        inputs.resize(node->num_inputs(), {nullptr, -1});
        for (const Edge* e : node->in_edges()) {
          if (e->IsControlEdge()) continue;
          inputs[e->dst_input()] = std::make_pair(e->src(), e->src_output());
        }
      }
      return inputs;
    }
    
    Input::Initializer::Initializer(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top