Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for text_format (0.33 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

    using ::stablehlo::quantization::FunctionNameMatcherSpec;
    using ::stablehlo::quantization::Method;
    using ::stablehlo::quantization::QuantizationSpec;
    using ::stablehlo::quantization::QuantizationSpecs;
    using ::tsl::protobuf::TextFormat;
    
    // TODO - b/303543789: Move the helper functions below to a separate util.
    // Fetches the default or null attribute, used for pattern matching.
    Attribute DefaultOrNullAttr(OpBuilder& builder, const Attribute& attr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/runlit.cfg.py

    # pylint: disable=undefined-variable
    # Configuration file for the 'lit' test runner.
    
    # name: The name of this test suite.
    config.name = 'MLIR ' + os.path.basename(config.mlir_test_dir)
    
    config.test_format = lit.formats.ShTest(not llvm_config.use_lit_shell)
    
    # suffixes: A list of file extensions to treat as test files.
    config.suffixes = ['.cc', '.hlo', '.json', '.mlir', '.pbtxt', '.py']
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_kernel_creator_test.cc

    #include "tensorflow/core/public/version.h"
    
    namespace tensorflow {
    
    std::shared_ptr<NodeProperties> ToNodeProperties(const string& text) {
      NodeDef node_def;
      DataTypeVector dummy;
      EXPECT_TRUE(protobuf::TextFormat::MergeFromString(text, &node_def));
      return std::make_shared<NodeProperties>(nullptr, std::move(node_def), dummy,
                                              dummy);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 01:39:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/log/LoggerTest.java

        }
    
        /**
         * Test method for
         * {@link org.codelibs.core.log.Logger#format(String, Object...)} .
         */
        @SuppressWarnings("static-access")
        @Test
        public void testFormat() {
            exception.expect(ClIllegalArgumentException.class);
            exception.expectMessage(is("[ECL0009]argument[AUTL0009] is illegal. because messageCode : AUTL0009."));
            Logger.format("AUTL0009", "hoge");
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_activity_listener_test.cc

      TF_ASSERT_OK(session->Run(inputs_2x2, output_names,
                                /*target_tensor_names=*/{}, &outputs));
    
      XlaAutoClusteringActivity expected_auto_clustering_activity;
      protobuf::TextFormat::ParseFromString(
          R"(global_jit_level: ON_2
    cpu_global_jit_enabled: true
    summary {
      unclustered_node_count: 4
      clustered_node_count: 14
      clusters {
        name: "cluster_0"
        size: 14
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/object_graph_traversal_test.cc

    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    
    namespace tensorflow {
    namespace {
    
    SavedObjectGraph ParseSavedObjectGraph(StringPiece text_proto) {
      SavedObjectGraph value;
      CHECK(tensorflow::protobuf::TextFormat::ParseFromString(string(text_proto),
                                                              &value));
      return value;
    }
    
    constexpr absl::string_view kSingleChildFoo = R"(
    nodes {
      children {
        node_id: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 20:15:34 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  7. tensorflow/c/kernels/summary_op_test.cc

        return cpu_allocator();
      }
    };
    
    // Helper for comparing output and expected output
    void ExpectSummaryMatches(const Summary& actual, const string& expected_str) {
      Summary expected;
      ASSERT_TRUE(protobuf::TextFormat::ParseFromString(expected_str, &expected));
      EXPECT_EQ(expected.DebugString(), actual.DebugString());
    }
    
    void TestScalarSummaryOp(Tensor* tags, Tensor* values, string expected_output,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 18 15:10:51 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

        }
      }
    
      return absl::OkStatus();
    }
    
    Status ReadTextProtoFromString(Env* env, const string& data,
                                   ::tensorflow::protobuf::Message* proto) {
      if (!::tensorflow::protobuf::TextFormat::ParseFromString(data, proto)) {
        return errors::DataLoss("Can't parse input data as text proto");
      }
      return absl::OkStatus();
    }
    }  // namespace
    
    Status AutoClusteringTest::RunAutoClusteringTestImpl(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_remote_test_util.cc

    #include "tensorflow/core/protobuf/tensorflow_server.pb.h"
    
    using ::tensorflow::string;
    
    string MatMulFunction(const string& matmul_device) {
      tensorflow::FunctionDef def;
      CHECK(tensorflow::protobuf::TextFormat::ParseFromString(
          absl::StrCat("    signature {"
                       "      name: 'MatMulFunction'"
                       "      input_arg {"
                       "        name: 'a'"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 11 22:56:03 UTC 2020
    - 9.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/jax_to_tfl_flatbuffer.cc

    };
    
    bool LoadHloProto(const std::string& contents, xla::HloProto* hlo_proto) {
      // NOLINTNEXTLINE: Use tsl::protobuf to be compatible with OSS.
      tsl::protobuf::TextFormat::Parser parser;
      NoOpErrorCollector collector;
      parser.RecordErrorsTo(&collector);
      return hlo_proto->ParseFromString(contents) ||
             parser.ParseFromString(contents, hlo_proto) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top