Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for d_0_arg (0.1 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

      auto arg0 = ops::_Arg(scope.WithOpName("a_0_arg"), DT_INT32, 0);
      auto arg1 = ops::_Arg(scope.WithOpName("b_0_arg"), DT_FLOAT, 1);
      auto arg2 = ops::_Arg(scope.WithOpName("c_0_arg"), DT_INT32, 2);
      auto arg3 = ops::_Arg(scope.WithOpName("d_0_arg"), DT_FLOAT, 3);
    
      auto arg4 = ops::_Arg(scope.WithOpName("u_0_arg"), DT_RESOURCE, 4);
      auto arg5 = ops::_Arg(scope.WithOpName("v_0_arg"), DT_RESOURCE, 5);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

          {
              {{"G"}, "BinaryTest", {"e_0_arg", "f_0_arg"}},
              {{"I"},
               "BinaryTest",
               {"f_0_arg", "outside_compilation_O1_host_compute:outputs:0"}},
              {{"outside_compilation_O1_host_compute"},
               "XlaHostCompute",
               {"d_0_arg", "G:o:0"},
               {{"Tinputs", absl::Span<const DataType>({DT_FLOAT, DT_FLOAT})},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

        // If up with end up with
        auto dq_op = dyn_cast_or_null<quantfork::DequantizeCastOp>(
            q_op.getOperand().getDefiningOp());
        if (!dq_op) {
          return;
        }
        auto dq_arg = dq_op.getOperand();
    
        if (!dq_arg.hasOneUse()) {
          // The initial quantization is used someplace else ... so it might be
          // reasonable for it to requantized for another purpose.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

        // If up with end up with
        auto dq_op = dyn_cast_or_null<quantfork::DequantizeCastOp>(
            q_op.getOperand().getDefiningOp());
        if (!dq_op) {
          return;
        }
        auto dq_arg = dq_op.getOperand();
    
        if (!dq_arg.hasOneUse()) {
          // The initial quantization is used someplace else ... so it might be
          // reasonable for it to requantized for another purpose.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

                .NewSubScope(child_scope_name);
    
        if (dx != nullptr) {
          std::vector<tensorflow::Output> dx_arg = OutputsFromTFOutputs(dx, ny);
          status->status =
              AddSymbolicGradients(scope, y_arg, x_arg, dx_arg, &dy_arg);
        } else {
          status->status = AddSymbolicGradients(scope, y_arg, x_arg, &dy_arg);
        }
    
        // Update g->name_map with the name_map from the scope, which will contain
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top