Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_ops (4.02 sec)

  1. tensorflow/BUILD

        output_package = "tensorflow._api.v2",
        packages_to_ignore = select({
            ":disable_tf_lite_py": [
                "tensorflow.python.framework.test_ops",
                "tensorflow.lite",
            ],
            "//conditions:default": ["tensorflow.python.framework.test_ops"],
        }),
        root_file_name = "v2.py",
        root_init_template = "api_template.__init__.py",
        visibility = ["//visibility:public"],
    )
    
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Thu Aug 28 19:11:51 UTC 2025
    - 53.4K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

      {
        // Load the library.
        TF_Status* status = TF_NewStatus();
        string lib_path = tensorflow::GetDataDependencyFilepath(
            tensorflow::io::JoinPath("tensorflow", "c", "test_op1.so"));
        TF_Library* lib = TF_LoadLibrary(lib_path.c_str(), status);
        TF_Code code = TF_GetCode(status);
        string status_msg(TF_Message(status));
        TF_DeleteStatus(status);
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Dec 27 12:18:10 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top