Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for rhs_out_idx_start (0.1 sec)

  1. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      // All the lhs equations should come first.
      if (lhs_out_idx_end > rhs_out_idx_start) return false;
    
      // All the lhs out dim and rhs out dim should be larger than the batch dims,
      // and they should not be mixed.
      int batch_dim_size = std::max(rhs_batch_dim_size, lhs_batch_dim_size);
      return lhs_out_idx_start >= batch_dim_size &&
             rhs_out_idx_start >= batch_dim_size;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top