Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for graph_version_ (0.27 sec)

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

    };
    
    ShapeInference::ShapeInference(int64_t graph_version, ModuleOp module,
                                   bool propagate_caller_callee_constants,
                                   ArrayRef<TypeID> ops_to_skip)
        : tf_dialect_(module->getContext()->getLoadedDialect<TensorFlowDialect>()),
          symbol_users_(symbol_table_, module),
          graph_version_(graph_version),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/shape_inference_utils.cc

    #define DEBUG_TYPE "tf-shape-inference-utils"
    
    namespace mlir {
    namespace TF {
    
    LogicalResult InferReturnTypeComponentsForTFOp(
        std::optional<Location> location, Operation* op, int64_t graph_version,
        tfg::OperandAsConstantFn operand_as_constant_fn,
        tfg::OpResultAsShapeFn op_result_as_shape_fn,
        tfg::ResultElementTypeFn result_element_type_fn,
        SmallVectorImpl<ShapedTypeComponents>& inferred_return_shapes) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 22 13:13:44 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/shape_inference_utils.h

    // being in MLIR instead of the TensorFlow op registry.
    LogicalResult InferReturnTypeComponentsForTFOp(
        std::optional<Location> location, Operation* op, int64_t graph_version,
        tfg::OperandAsConstantFn operand_as_constant_fn,
        tfg::OpResultAsShapeFn op_result_as_shape_fn,
        tfg::ResultElementTypeFn result_element_type_fn,
        SmallVectorImpl<ShapedTypeComponents>& inferred_return_shapes);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.h

    // reached convergence, false otherwise.
    FailureOr<bool> InferShapeForFunction(func::FuncOp func,
                                          ArrayRef<ArrayRef<int64_t>> arg_shapes,
                                          int64_t graph_version,
                                          int64_t max_iterations = 10,
                                          ArrayRef<TypeID> ops_to_skip = {});
    
    }  // namespace TF
    
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top