Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 243 for Tinput (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/build-cache/overlapping-outputs-input-comparison.png

    overlapping-outputs-input-comparison.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

         (AllElementsAreBool<"false"> $constant)]>;
      // select(logical_not(C), A, B) -> select(C, B, A)
      def Optimize#SelectOp#Not : Pat<
        (SelectOp (TFL_LogicalNotOp $condition), $input1, $input2),
        (SelectOp $condition, $input2, $input1)>;
    
      // Fuse select(broadcast_to(input, shape), x, y) -> selectV2(input, x, y)
      // Also, fuse selectv2(broadcast_to(input, shape), x, y) -> selectV2(input, x, y)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. tensorflow/c/kernels_test.cc

        TF_Tensor* input = nullptr;
        TF_Status* s = TF_NewStatus();
        TF_GetInput(ctx, 0, &input, s);
        EXPECT_EQ(TF_OK, TF_GetCode(s)) << "Failed to get input: " << TF_Message(s);
        EXPECT_EQ(123, *static_cast<tensorflow::uint8*>(TF_TensorData(input)));
        TF_GetInput(ctx, -1, &input, s);
        EXPECT_EQ(TF_OUT_OF_RANGE, TF_GetCode(s));
        TF_GetInput(ctx, 3, &input, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_test.cc

      TFE_DeleteContextOptions(opts);
    
      TFE_TensorHandle* input1 = TestMatrixTensorHandle(ctx);
      TFE_TensorHandle* input2 = TestMatrixTensorHandle(ctx);
      TFE_Op* identityOp = TFE_NewOp(ctx, "IdentityN", status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_TensorHandle* inputs[] = {input1, input2};
      TFE_OpAddInputList(identityOp, inputs, 2, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      EXPECT_THAT(input2->type, Eq(TensorType_INT8));
    
      // Check if the quantization params of the minimum/maximum inputs match
      // after requantization
      EXPECT_THAT(input1->quantization->scale, Eq(input2->quantization->scale));
      EXPECT_THAT(input1->quantization->zero_point,
                  Eq(input2->quantization->zero_point));
    
      // Check the input quantization params match the output ones.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

    // Checks if input 19 is correctly passed from a dequantize op.
    // CHECK: %[[lstm:.*]] = "tfl.unidirectional_sequence_lstm"(%arg0, {{(%[^%,]+, )+}}%[[dq]], %[[none]], %[[none]], %[[none]], %[[none]])
    }
    
    // CHECK-LABEL: QuantizeWithoutNorm
    func.func @QuantizeWithoutNorm(%arg0: tensor<1x1x5xf32>) -> tensor<*xf32> attributes {tf.entry_function = {inputs = "input0", outputs = "output24"}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_function_test.cc

      // The first one will the function's output
      std::vector<TF_Output> outputs;
    
      // Add while loop to func_graph_
      {
        // The inputs to the while loop
        std::vector<TF_Output> inputs = {{feed1, 0}, {feed2, 0}};
        std::unique_ptr<TF_WhileParams> params(new TF_WhileParams(
            TF_NewWhile(func_graph_, &inputs[0], inputs.size(), s_)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        if (input.exists()) {
                            println "processing \${input.name}"
                        } else {
                            println "processing missing \${input.name}"
                        }
                        def output = outputs.file(input.name + ".green")
                        output.text = input.list().length + ".green"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  9. pkg/kubelet/status/status_manager_test.go

    			false,
    			false,
    			func(input v1.PodStatus) v1.PodStatus {
    				input.Phase = v1.PodRunning
    				input.Reason = "Unknown"
    				input.Message = "Message"
    				return input
    			},
    			func(input v1.PodStatus) v1.PodStatus {
    				input.Phase = v1.PodFailed
    				input.Reason = "Evicted"
    				input.Message = "Was Evicted"
    				return input
    			},
    			v1.PodStatus{
    				Phase: v1.PodFailed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/math_grad.cc

      // for details.
    
      // Running example:
      // input: [[5, 5, 5],
      //         [1, 2, -3]]
      // reduction_indices: [1]
      auto input = op.input(0);
      auto reduction_indices = op.input(1);
    
      // [2, 3]
      auto input_shape = Shape(scope, input);
    
      // [2, 1]
      auto output_shape_kept_dims =
          ReducedShapeHelper(scope, input_shape, reduction_indices);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
Back to top