Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LLVM_DEBUG (0.55 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      if (kernel_input_feature_dim != 2) {
        LLVM_DEBUG(llvm::dbgs() << "Expected kernel input feature == 2. Got: "
                                << kernel_input_feature_dim << ".\n");
        return failure();
      }
    
      const int64_t kernel_output_feature_dim =
          dimension_numbers.getKernelOutputFeatureDimension();
      if (kernel_output_feature_dim != 3) {
        LLVM_DEBUG(llvm::dbgs() << "Expected kernel output feature == 3. Got: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          if (!ret) continue;
    
          LLVM_DEBUG(ret.print(llvm::dbgs() << "\ncomputed result = "));
    
          // If worklist is empty, then this is the root query op.
          if (worklist.empty()) {
            LLVM_DEBUG(llvm::dbgs() << "[root node]\n");
            if (auto dea = mlir::dyn_cast<DenseIntElementsAttr>(ret)) {
              if (dea.getNumElements() != 1) {
                LLVM_DEBUG(llvm::dbgs() << "Unexpected number of elements\n");
    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