Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DialectFoldInterface (0.2 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                           IRMapping& valueMapping) const final {
        return isa<WhileOp>(dest->getParentOp());
      }
    };
    
    struct TensorFlowLiteDialectFoldInterface : public DialectFoldInterface {
      using DialectFoldInterface::DialectFoldInterface;
    
      // Registered hook to check if the given region, which is attached to an
      // operation that is *not* isolated from above (i.e. no internal regions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        // Only attempt TF dialect fallback if there are no unknown operands.
        if (some_unknown && dialect == tf_dialect_) return failure();
        auto* interface = dialect->getRegisteredInterface<DialectFoldInterface>();
        if (!interface) return failure();
    
        if (failed(interface->fold(op, constant_operands, fold_results)))
          return failure();
      }
    
    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