Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for summary_op (0.17 sec)

  1. tensorflow/c/kernels/summary_op.cc

    Jake Harmon <******@****.***> 1694027275 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. tensorflow/c/kernels/BUILD

            "//tensorflow/c:tf_status",
            "//tensorflow/c:tf_tensor",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
        ],
    )
    
    tf_kernel_library(
        name = "summary_op",
        prefix = "summary_op",
        deps = [
            "//tensorflow/c:kernels",
            "//tensorflow/c:tf_status",
            "//tensorflow/c:tf_tensor",
            "//tensorflow/c/kernels:tensor_shape_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/c/kernels/merge_summary_op.cc

          tensorflow::Summary summary_in;
          if (!tensorflow::ParseProtoUnlimited(&summary_in, s_in)) {
            TF_SetStatus(status.get(), TF_INVALID_ARGUMENT,
                         "Could not parse one of the summary inputs");
            TF_OpKernelContext_Failure(ctx, status.get());
            return;
          }
          for (int v = 0; v < summary_in.value_size(); ++v) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 31 03:28:11 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  4. hack/verify-e2e-test-ownership.sh

      <"${spec_summaries}" jq --slurp --from-file "${results_jq}" > "${results_json}"
    }
    
    # summarize e2e test policy results
    # output to ${summary_json}
    function generate_summary_json() {
      summary_jq=${tmpdir}/summary.jq
      cat >"${summary_jq}" <<EOS
      . as \$results |
      # for each policy category
      reduce \$results[0].policies[] as \$p ({}; . + {
        # add a convenience .policy field containing that policy's result
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/model/op_spec.h

    class OpSpec {
     public:
      static OpSpec Create(const OpDef& op_def, const ApiDef& api_def);
    
      const string& name() const { return name_; }
      const string& summary() const { return summary_; }
      const string& description() const { return description_; }
      const std::vector<ArgSpec>& Inputs() const { return input_args_; }
      const std::vector<ArgSpec>& Outputs() const { return output_args_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

                     int a_line_number,
                     const char* a_message)
          : type_(a_type),
            file_name_(a_file_name == NULL ? "" : a_file_name),
            line_number_(a_line_number),
            summary_(ExtractSummary(a_message)),
            message_(a_message) {
      }
    
      // Gets the outcome of the test part.
      Type type() const { return type_; }
    
      // Gets the name of the source file where the test part took place, or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

                     int a_line_number,
                     const char* a_message)
          : type_(a_type),
            file_name_(a_file_name == NULL ? "" : a_file_name),
            line_number_(a_line_number),
            summary_(ExtractSummary(a_message)),
            message_(a_message) {
      }
    
      // Gets the outcome of the test part.
      Type type() const { return type_; }
    
      // Gets the name of the source file where the test part took place, or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/model/op_spec.cc

    namespace generator {
    
    OpSpec OpSpec::Create(const OpDef& op_def, const ApiDef& api_def) {
      return OpSpec(op_def, api_def);
    }
    
    OpSpec::OpSpec(const OpDef& op_def, const ApiDef& api_def)
        : name_(op_def.name()),
          summary_(api_def.summary()),
          description_(api_def.description()) {
      absl::flat_hash_set<string> inferred_attrs;
      // Parse the arguments
      for (const OpDef::ArgDef& arg_def : op_def.input_arg()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 01 21:05:56 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top