Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sizeType (0.09 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto begin_type = mlir::dyn_cast<RankedTensorType>(begin_indices.getType());
        auto size_type = mlir::dyn_cast<RankedTensorType>(sizes.getType());
    
        if (!input_ty || !begin_type || !size_type ||
            !begin_type.hasStaticShape() || !size_type.hasStaticShape() ||
            begin_type.getRank() != 1 || size_type.getRank() != 1) {
          return failure();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        func::FuncOp ret = queue_.front();
        queue_.pop();
        queue_set_.erase(ret);
        return ret;
      }
    
      // Returns the current size of the queue.
      std::queue<func::FuncOp>::size_type QueueSize() const {
        return queue_.size();
      }
    
      Dialect* const tf_dialect_;
    
     private:
      // Returns whether the result of an operation could be updated to a new
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top