Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for weights_row_it (0.12 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Get iterators to the tensors.
      const auto input_values_it = input_tensor.getValues<float>().begin();
      const auto weights_values_ptr = weights_tensor.getValues<float>().begin();
      auto weights_row_it = weights_values_ptr;
      // The 'else' case could be nullptr, but the types don't match.
      auto bias_values_it =
          has_bias ? bias_tensor.getValues<float>().begin() : input_values_it;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top