Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for input_idx (0.15 sec)

  1. tensorflow/cc/gradients/array_grad.cc

      Input input = Shape(scope, op.input(0));
      Input input_min = op.input(1);
      Input input_max = op.input(2);
      int64_t axis;
      TF_RETURN_IF_ERROR(GetNodeAttr(op.node()->attrs(), "axis", &axis));
      auto qdq_v4_grad = QuantizeAndDequantizeV4Grad(
          scope, grad_inputs[0], input, input_min, input_max,
          QuantizeAndDequantizeV4Grad::Axis(axis));
      grad_outputs->push_back(qdq_v4_grad.input_backprop);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      // Checks preconditions to adjust bias scale.
      bool ShouldCheckBiasScale(Operation* op, int bias_index,
                                ArrayRef<int> input_indices,
                                QuantizedType quantized_type, int& input_index,
                                int& filter_index);
    
      // Preprocesses the constants by doing the following:
      //   - Duplicates constants if it is used by multiple ops. For example, if a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/kernels/xla_ops.cc

      std::set<int> variables_updated;
      for (const auto& resource_update : compilation_result.resource_updates) {
        if (resource_update.modified) {
          variables_updated.insert(resource_update.input_index);
        }
      }
      return GetVariableInfosFromInputs(ctx->resource_manager(), ctx->device(),
                                        inputs, variable_indices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top