Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HasConstantFoldHook (0.51 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h

                                        SmallVectorImpl<OpFoldResult> &results) {
        if (constant_fold_hook_) return constant_fold_hook_(op, operands, results);
        return failure();
      }
    
      static bool HasConstantFoldHook() { return constant_fold_hook_; }
    
      // Provides a hook for op interface.
      void *getRegisteredInterfaceForOp(mlir::TypeID interface,
                                        mlir::OperationName opName) override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.cc

      // Constant folding is essential for the bridge. Without this check, the
      // bridge may fail with an error that is difficult to understand and not
      // actionable.
      if (!mlir::TF::TensorFlowDialect::HasConstantFoldHook()) {
        return tensorflow::errors::Internal(
            "TensorFlow dialect missing constant fold hook in TFXLA bridge phase "
            "1; this could happen if the binary doesn't link the constant fold "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

      // Constant folding is essential for the bridge. Without this check, the
      // bridge may fail with an error that is difficult to understand and not
      // actionable.
      if (!mlir::TF::TensorFlowDialect::HasConstantFoldHook()) {
        return tensorflow::errors::Internal(
            "TensorFlow dialect missing constant fold hook in TFXLA bridge phase "
            "1; this could happen if the binary doesn't link the constant fold "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top