Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for LLVM_DEBUG (0.1 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

      TextFormat::Printer printer;
      printer.SetSingleLineMode(true);
    
      std::string method_txtpb;
      if (!printer.PrintToString(method, &method_txtpb)) {
        LLVM_DEBUG(llvm::dbgs() << "Failed to convert Method to textproto\n.");
        return failure();
      }
    
      // Single line mode might have an extra space at the end, due to the internal
      // details of `Printer`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

          }
        }
    
        auto emplace_res = var_access_info.per_resource_info.try_emplace(
            resource, VariableAccessInfo());
        if (!emplace_res.second) {
          LLVM_DEBUG(llvm::dbgs()
                     << "Skipping execute that has multiple reads of a variable: "
                     << execute << "\n");
          var_access_info.per_resource_info.shrink_and_clear();
          return var_access_info;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

      // Use the result's state if it is immutable and it is the only one result.
      if (op->getNumResults() == 1 && immutable_results_num == 1) {
        return immutable_states.back()->params;
      }
    
      LLVM_DEBUG(llvm::dbgs()
                 << "Quantization parameters are not collected in an ideal place. "
                    "Has to fallback values which might introduce errors.\n");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

      if (!result.has_value()) return success();
      llvm::StringRef cluster_name = result.value();
    
      // We found a _replication_info, let's build an island for the full cluster!
      LLVM_DEBUG(llvm::dbgs() << "Processing candidate island: "
                              << *island.getOperation() << "\n");
    
      // Collect the islands to merge together in this new cluster starting with the
      // given island.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top