Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for elideLargeElementsAttrs (0.53 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      llvm::raw_string_ostream os(result);
      OpPrintingFlags printing_flags;
      if (debug_info) {
        printing_flags.enableDebugInfo();
      }
      if (elide_large_elements_attrs) {
        printing_flags.elideLargeElementsAttrs();
      }
      module.print(os, printing_flags);
      os.flush();
    
      output->os() << result;
      output->keep();
    
      return absl::OkStatus();
    }
    
    tensorflow::Status ConvertTFToStableHLO(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/debug/debug.cc

        mlir::OpPrintingFlags opPrintingFlags = mlir::OpPrintingFlags();
    
        if (options.has_elide_elementsattrs_if_larger()) {
          opPrintingFlags.elideLargeElementsAttrs(
              options.elide_elementsattrs_if_larger());
        }
    
        pm.enableIRPrinting(should_print_ir_before_pass, should_print_ir_after_pass,
                            options.print_ir_module_scope(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top