Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for FunctionName (0.32 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/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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top