Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for debug_name (0.21 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

      // resulting graph of this step is not expected to be loaded on TPU.
      const ExportOptions export_opts = {
          /*duplicate_shape_determining_constants=*/false,
          /*unfreeze_constants=*/false, checkpoint_dir,
          /*debug_name=*/absl::StrCat(kName, kExportStepSuffix)};
    
      TF_ASSIGN_OR_RETURN(const SmallVector<AssetFileDef> asset_file_defs,
                          RunExportPasses(export_opts, *ctx_, *cloned_module_ref));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

      const auto export_opts =
          ExportOptions{/*duplicate_shape_determining_constants=*/true,
                        unfreeze_constants, checkpoint_dir,
                        /*debug_name=*/absl::StrCat(step_name, kExportStepSuffix)};
    
      TF_ASSIGN_OR_RETURN(const llvm::SmallVector<AssetFileDef> asset_file_defs,
                          RunExportPasses(export_opts, *ctx, module_op));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirTypeErrorType.kt

                    is ConeCannotInferTypeParameterType -> diagnostic.typeParameter.name.asString()
                    is ConeTypeVariableTypeIsNotInferred -> diagnostic.typeVariableType.typeConstructor.debugName
                    else -> null
                }
            }
    
        override val annotations: KaAnnotationList by cached {
            KaFirAnnotationListForType.create(coneType, builder)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

                        val diagnostic = when ( val typeParameter = coneType.typeConstructor.originalTypeParameter) {
                            null -> ConeSimpleDiagnostic("Cannot infer parameter type for ${coneType.typeConstructor.debugName}")
                            else -> ConeCannotInferTypeParameterType((typeParameter as ConeTypeParameterLookupTag).typeParameterSymbol)
                        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top