Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for debug_name (0.38 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.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)
  5. 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)
  6. 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)
Back to top