Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Extern (0.09 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h

    // TODO(jpienaar): Revise the command line option parsing here.
    extern llvm::cl::opt<std::string> input_file_name;
    extern llvm::cl::opt<std::string> output_file_name;
    extern llvm::cl::opt<bool> use_splatted_constant;
    extern llvm::cl::opt<bool> input_mlir;
    extern llvm::cl::opt<bool> output_mlir;
    extern llvm::cl::list<std::string> custom_opdefs;
    extern llvm::cl::opt<bool> emit_quant_adaptor_ops;
    extern llvm::cl::opt<std::string> quant_stats_file_name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/public/signature_def_function_metadata.h

    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    // An opaque type that corresponds to a SignatureDefFunction loaded from a
    // SavedModel.
    typedef struct TF_SignatureDefFunctionMetadata TF_SignatureDefFunctionMetadata;
    
    // Retrieves the arguments of the SignatureDefFunction. The caller is not
    // responsible for freeing the returned pointer.
    TF_CAPI_EXPORT extern const TF_SignatureDefParamList*
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/c/tf_datatype.h

    // to the given TF_DataType enum value. Returns 0 for variable length types
    // (eg. TF_STRING) or on failure.
    TF_CAPI_EXPORT extern size_t TF_DataTypeSize(TF_DataType dt);
    
    #ifdef __cplusplus
    } /* end extern "C" */
    #endif
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:13:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/internal/saved_model_api.cc

    #include "tensorflow/core/common_runtime/eager/context.h"
    #include "tensorflow/core/platform/casts.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/status.h"
    
    extern "C" {
    
    TF_SavedModel* TF_LoadSavedModel(const char* dirname, TFE_Context* ctx,
                                     TF_Status* status) {
      std::string saved_model_dir(dirname);
      std::unique_ptr<tensorflow::SavedModelAPI> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  5. cluster/gce/windows/testonly/user-profile.psm1

        {
            [DllImport("userenv.dll", CharSet = CharSet.Unicode, ExactSpelling = false, SetLastError = true)]
            public static extern bool DeleteProfile(string sidString, string profilePath, string computerName);
    
            [DllImport("kernel32.dll")]
            public static extern uint GetLastError();
        }
    
        public static class Profile
        {
            public static uint Delete(string sidString)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/stream_executor/test/test_pluggable_device.cc

    ==============================================================================*/
    
    #include "tensorflow/c/experimental/stream_executor/stream_executor.h"
    #include "tensorflow/c/experimental/stream_executor/stream_executor_test_util.h"
    
    extern "C" {
    
    void SE_InitPlugin(SE_PlatformRegistrationParams* const params,
                       TF_Status* const status) {
      stream_executor::test_util::PopulateDefaultPlatformRegistrationParams(params);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 18 04:53:02 UTC 2021
    - 1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir_registration.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/eager/c_api_unified_experimental_internal.h"
    
    using tensorflow::tracing::TracingContext;
    
    extern "C" {
    TracingContext* MlirTracingFactory(const char* fn_name, TF_Status* s);
    }
    
    namespace {
    // Register the tracing implemented in this file as the default tracing engine.
    static bool register_tracing = [] {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 25 04:40:46 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_cluster_util.h

    #include "tensorflow/core/graph/algorithm.h"
    
    namespace tensorflow {
    
    // The attribute that marks nodes to be grouped into functions by the
    // encapsulate subgraphs pass.
    extern const char* const kXlaClusterAttr;
    
    // The attribute that marks certain inputs to a Node as required to be a
    // constant at compile time.  If this attribute is present then the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestWithLibraryDependenciesIntegrationTest.groovy

                apply plugin: 'cpp-library'
                project(':lib') {
                    apply plugin: 'cpp-library'
                }
    """
            file("src/main/headers/main_lib.h") << """
                extern int some_func();
    """
            file("src/main/cpp/main_lib.cpp") << """
                #include <lib.h>
                #include <main_lib.h>
                
                int some_func() { 
                    lib_func();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedObjectiveCHelloWorldApp.groovy

                    return 0;
                }
    
            """)
        }
    
        @Override
        SourceFile getLibraryHeader() {
            return sourceFile("headers", "hello.h", """
                #ifdef __cplusplus
                extern "C" {
                #endif
                int sum(int a, int b);
                void world();
                #ifdef __cplusplus
                }
                #endif
                void doGreeting();
                void hello();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top