Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BuildProgram (0.18 sec)

  1. tensorflow/cc/experimental/libtf/module.h

    // representation, in the tf_package.
    tensorflow::StatusOr<std::vector<Handle>> BuildObjects(
        tensorflow::libexport::TFPackage& tf_package);
    
    // Convert tf_package to a program in the runtime.
    tensorflow::StatusOr<Handle> BuildProgram(
        runtime::Runtime runtime, tensorflow::libexport::TFPackage& tf_package);
    
    }  // namespace impl
    }  // namespace libtf
    }  // namespace tf
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/module.cc

                                                      std::vector<Handle> objects) {
      return tensorflow::errors::Unimplemented("Not implemented.");
    }
    
    tensorflow::StatusOr<Handle> BuildProgram(Runtime runtime,
                                              TFPackage& tf_package) {
      return tensorflow::errors::Unimplemented("Not implemented.");
    }
    
    }  // namespace impl
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/tests/module_test.cc

    using ::tf::libtf::runtime::Runtime;
    
    TEST(ModuleTest, TestStubbedFunctions) {
      Runtime runtime = runtime::core::Runtime();
      TFPackage tf_package;
      tensorflow::StatusOr<Handle> result = BuildProgram(runtime, tf_package);
      ASSERT_FALSE(result.status().ok());
    }
    
    TEST(ModuleTest, TestBuildObjectsDataStructures) {
      const std::string path = tensorflow::GetDataDependencyFilepath(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 4.6K bytes
    - Viewed (0)
Back to top