Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for FunctionName (0.24 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/types.h

    // example, it is easy to confuse function name -> alias mapping with alias ->
    // function name mapping when both are just represented as `std::string`.
    using FunctionAlias = std::string;
    using FunctionName = std::string;
    
    }  // namespace mlir::quant::stablehlo
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 22 00:38:45 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

    using ::mlir::quant::stablehlo::CreateMlirContextForQuantization;
    using ::mlir::quant::stablehlo::ExportOptions;
    using ::mlir::quant::stablehlo::FunctionAlias;
    using ::mlir::quant::stablehlo::FunctionName;
    using ::mlir::quant::stablehlo::GetFunctionAliases;
    using ::mlir::quant::stablehlo::kExportStepSuffix;
    using ::mlir::quant::stablehlo::PostCalibrationComponent;
    using ::mlir::quant::stablehlo::PreCalibrationComponent;
    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. tensorflow/c/experimental/ops/gen/cpp/renderers/op_comment_renderer.cc

    void OpCommentRenderer::Render() {
      if (context_.mode == RendererContext::kHeader) {
        // Add a short 1-line comment to the header files.
        CommentLine(op_.Summary());
        return;
      }
    
      CommentLine("Op: $0()", op_.FunctionName());
      CommentLine("Summary: $0", op_.Summary());
      CommentLine("");
      CommentLine("Description:");
      for (const auto& line : op_.Description()) {
        CommentLine("  $0", line);
      }
    }
    
    }  // namespace cpp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

        const std::vector<std::string>& signature_keys,
        const std::unordered_set<std::string>& tags,
        const QuantizationConfig& quantization_config,
        absl::string_view debug_name_prefix,
        const absl::flat_hash_map<FunctionName, FunctionAlias>& function_aliases,
        MLIRContext& ctx ABSL_ATTRIBUTE_LIFETIME_BOUND, ModuleOp module_op) {
      TF_ASSIGN_OR_RETURN(const std::string checkpoint_dir, GetLocalTmpFileName());
      const ExportOptions export_opts = {
    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. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

    
    typealias ParameterNamesSupplier = (String) -> List<String>?
    
    
    private
    fun ParameterNamesSupplier.parameterNamesFor(typeName: String, functionName: String, parameterTypeNames: List<String>): List<String>? =
        this("$typeName.$functionName(${parameterTypeNames.joinToString(",")})")
    
    
    /**
     * Provides [ApiType] instances by Kotlin source name from a class path.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.cc

                       std::make_move_iterator(args_with_default_val.begin()),
                       std::make_move_iterator(args_with_default_val.end()));
      return absl::Substitute("$0 $1($2)", "Status", op_.FunctionName(),
                              absl::StrJoin(arguments, ", "));
    }
    
    OpRenderer::OpRenderer(RendererContext context, OpView op)
        : Renderer(context), op_(op), comment_(context, op) {}
    
    void OpRenderer::Render() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

      return input_args_.front();
    }
    
    ArgView OpView::OnlyOutput() const {
      CHECK_EQ(output_args_.size(), 1);  // Crash OK
      return output_args_.front();
    }
    
    string OpView::FunctionName() const { return op_.name(); }
    
    string OpView::OpNameString() const { return Quoted(op_.name()); }
    
    string OpView::VariableName() const { return "op_ptr"; }
    
    std::vector<string> OpView::Description() const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.h

          std::vector<std::string> signature_keys,
          std::unordered_set<std::string> tags,
          absl::flat_hash_map<std::string, tensorflow::SignatureDef>
              signature_def_map,
          absl::flat_hash_map<FunctionName, FunctionAlias> function_aliases);
    
      // Runs the static-range post-training quantization (PTQ) on `module_op`.
      absl::StatusOr<ModuleOp> Run(
          ModuleOp module_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 02:44:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.cc

                  quantization_config.tf_saved_model().tags().end());
    
      std::unique_ptr<MLIRContext> ctx = CreateMlirContextForQuantization();
    
      absl::StatusOr<absl::flat_hash_map<FunctionName, FunctionAlias>>
          function_aliases = GetFunctionAliases(src_saved_model_path, tags);
      if (!function_aliases.ok()) {
        return absl::InternalError(absl::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

        ): List<FunctionResolutionAndBinding> {
            val receiverType = getDataType(receiver) as? DataClass
                ?: return emptyList()
            val functionName = functionCall.name
            val matchingMembers = receiverType.memberFunctions.filter { it.simpleName == functionName }
            // TODO: support optional parameters?
            // TODO: support at least minimal overload resolution?
            val args = functionCall.args
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top