Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 109 for functionName (0.41 sec)

  1. testing/performance/src/templates/native-pch-source/lib.c

    #include "pch.h"
    
    <% functionCount.times { %>
    int ${functionName}_${it+1} () {
      printf("Hello world!");
      return 0;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 126 bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-source/lib.c

    #include <stdio.h>
    
    <% functionCount.times { %>
    int ${functionName}_${it+1} () {
      printf("Hello world!");
      return 0;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 129 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

          absl::Nonnull<MLIRContext*> ctx,
          absl::Nonnull<const tensorflow::quantization::PyFunctionLibrary*>
              py_function_lib,
          absl::string_view src_saved_model_path,
          absl::flat_hash_map<FunctionName, FunctionAlias> function_aliases,
          std::unordered_set<std::string> tags,
          absl::flat_hash_map<std::string, tensorflow::SignatureDef>
              signature_def_map,
          std::vector<std::string> signature_keys);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.cc

        std::vector<std::string> signature_keys,
        std::unordered_set<std::string> tags,
        absl::flat_hash_map<std::string, SignatureDef> signature_def_map,
        absl::flat_hash_map<FunctionName, FunctionAlias> function_aliases)
        : ctx_(ctx) {
      // Initialize the three sub-components.
      sub_components_[0] = std::make_unique<PreCalibrationComponent>(ctx_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tensorflow/c/experimental/ops/gen/cpp/views/op_view.h

      const std::vector<OpArgumentView> &AllArguments() const;
    
      int NumInputs() const;
      int NumOutputs() const;
      ArgView OnlyInput() const;
      ArgView OnlyOutput() const;
    
      string FunctionName() const;
      string VariableName() const;
      string OpNameString() const;
      string Summary() const;
      std::vector<string> Description() const;
      bool IsListOp() const;
    
     private:
      OpSpec op_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top