Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pretty_form (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/dump_graph.h

        return *this;
      }
    
      // Enable printing of debug information. If 'pretty_form' is set to true,
      // debug information is printed in a more readable 'pretty' form but this
      // pretty form is not parsable (so only for human readability).
      MlirDumpConfig& emit_location_information(bool pretty_form = false) {
        this->op_printing_flags.enableDebugInfo(/*enable=*/true, pretty_form);
        return *this;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 24 09:43:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

    void dump(StringRef message, Operation* op) {
      llvm::dbgs() << message;
      op->print(llvm::dbgs(), OpPrintingFlags().enableDebugInfo(
                                  /*enable=*/true, /*prettyForm=*/true));
      llvm::dbgs() << "\n";
    }
    
    // Propagates device assignment inside a function.
    LogicalResult ComputeResourceDevicesInComputation(func::FuncOp func_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top