Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for output_batch_shape (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.cc

      auto pack_op =
          rewriter.create<TF::PackOp>(loc, packed_type, /*values=*/matmuls, axis);
    
      // Reshape the rank-3 tensor into the correct output shape.
      const auto& result_batch_shape = bcast.output_batch_shape().dim_sizes();
      std::vector<int64_t> result_shape(result_batch_shape.begin(),
                                        result_batch_shape.end());
      result_shape.push_back(rows);
      result_shape.push_back(cols);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top