Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for debug_name (0.56 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/golden/testing_ops.cc.golden

      TF_RETURN_IF_ERROR(op_ptr->SetAttrString("shared_name", shared_name, strlen(shared_name)));
      TF_RETURN_IF_ERROR(op_ptr->SetAttrString("debug_name", debug_name, strlen(debug_name)));
      TF_RETURN_IF_ERROR(op_ptr->SetAttrType("dtype", dtype));
      TF_RETURN_IF_ERROR(op_ptr->SetAttrShape("shape", shape));
      TF_RETURN_IF_ERROR(op_ptr->SetAttrStringList("allowed_devices", allowed_devices));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 16 19:04:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/golden/testing_ops.h.golden

    //
    Status VarHandleOp(AbstractContext* ctx, AbstractTensorHandle** resource, DataType dtype, const PartialTensorShape shape, const char* container = "", const char* shared_name = "", const char* debug_name = "", absl::Span<string const> allowed_devices = {}, const char* name = nullptr, const char* raw_device_name = nullptr);
    
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 16 19:04:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/aot_only_var_handle_op.cc

    REGISTER_OP(tfcompile::kXlaAotOnlyVarHandleOp)
        .Doc(R"doc(
    Internal VarHandleOp registration used for XLA AOT compilation.
    )doc")
        .Attr("container: string = ''")
        .Attr("shared_name: string = ''")
        .Attr("debug_name: string = ''")
        .Attr("dtype: type")
        .Attr("shape: shape")
        .Output("resource: resource")
        .SetIsStateful()
        .SetShapeFn([](shape_inference::InferenceContext* c) {
          c->set_output(0, c->Scalar());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:57:04 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

      const ExportOptions export_opts = {
          /*duplicate_shape_determining_constants=*/true,
          /*unfreeze_constants=*/false, checkpoint_dir,
          /*debug_name=*/
          absl::StrCat(debug_name_prefix, kExportStepSuffix)};
    
      TF_ASSIGN_OR_RETURN(const SmallVector<AssetFileDef> asset_file_defs,
                          RunExportPasses(export_opts, ctx, module_op));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

      std::string checkpoint_dir = "";
    
      // Name used to identify the ModuleOp this is exporting. Only used for
      // debugging and does not modify the behavior of the export.
      std::string debug_name = "stablehlo_quant";
    };
    
    // Creates `ExportedModel` from `module_op`. `module_op` goes through post
    // process passes before an `ExportModel` is created.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/debug/pe/file_test.go

    			{".debug_info", 0, 0, 418, 673, 1470, 0, 7, 0, 1108344832},
    			{".debug_line", 0, 0, 128, 1091, 1540, 0, 1, 0, 1108344832},
    			{".rdata", 0, 0, 16, 1219, 0, 0, 0, 0, 1076887616},
    			{".debug_frame", 0, 0, 52, 1235, 1550, 0, 2, 0, 1110441984},
    			{".debug_loc", 0, 0, 56, 1287, 0, 0, 0, 0, 1108344832},
    			{".debug_pubnames", 0, 0, 27, 1343, 1570, 0, 1, 0, 1108344832},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    		rsize += uint64(d.ldr.SymSize(s))
    	}
    
    	if d.linkctxt.HeadType == objabi.Haix {
    		addDwsectCUSize(".debug_ranges", unit.Lib.Pkg, rsize)
    	}
    
    	return syms
    }
    
    /*
     *  Emit .debug_frame
     */
    const (
    	dataAlignmentFactor = -4
    )
    
    // appendPCDeltaCFA appends per-PC CFA deltas to b and returns the final slice.
    func appendPCDeltaCFA(arch *sys.Arch, b []byte, deltapc, cfa int64) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top