Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

      absl::StatusOr<mhlo::TupleOp> ImportXlaComputation(
          xla::XlaComputation& computation);
    
      // Prepares OpKernelContext params common to all the ops.
      // Emits an error on failure.
      mlir::LogicalResult PrepareParams();
    
      // Given the required_consts, it will fill the 3 output vectors with
      // their respective data.
      // Expressions: Output XLA expressions as required by the compiled kernel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

      if (!root_tuple) {
        return tsl::errors::InvalidArgument(
            "Imported XLA Root Value is not a tuple op");
      }
    
      return root_tuple;
    }
    
    LogicalResult Tf2XlaRewriter::PrepareParams() {
      // XlaCompiler within the context is only used by the functional ops to
      // compile functions. We are not handling those at the moment so
      // XlaCompiler is not required.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top