Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for platformWindows (0.4 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/build.gradle

    }
    
    model {
        components {
            main(NativeExecutableSpec) { m ->
                binaries.all {
                    sources {
                        if (targetPlatform.operatingSystem.windows) {
                            platformWindows(CSourceSet) {
                                source.srcDir "src/main/windows"
                                lib m.sources.c
                            }
                        } else if (targetPlatform.operatingSystem.linux) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 971 bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/image_format/internal_api.cc

    #include "tensorflow/core/platform/file_system_helper.h"
    #include "tensorflow/core/protobuf/saved_model.pb.h"
    #include "tensorflow/tools/proto_splitter/cc/max_size.h"
    // TODO(b/291933687), TODO(b/291001524)
    #if !defined(PLATFORM_WINDOWS) && !defined(__APPLE__)
    #include "tensorflow/tools/proto_splitter/cc/saved_model_splitter.h"
    #include "tensorflow/tools/proto_splitter/merge.h"
    #endif
    #define IS_OSS false
    namespace tensorflow {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 30 21:50:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_experimental_test.cc

      TF_DeletePluggableDeviceLibraryHandle(lib);
    #endif  // !defined(TENSORFLOW_NO_SHARED_OBJECTS)
    #endif  // !defined(PLATFORM_WINDOWS)
    }
    
    TEST(CAPI_EXPERIMENTAL, LibraryNextPluggableDeviceLoadFunctions) {
      // TODO(penpornk): Enable this test on Windows.
    #if !defined(PLATFORM_WINDOWS)
    #if !defined(TENSORFLOW_NO_SHARED_OBJECTS)
      // Load the library.
      TF_Status* status = TF_NewStatus();
      string lib_path =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 17 22:27:52 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/fingerprinting.cc

    #include "tensorflow/core/protobuf/saved_model.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    #include "tensorflow/core/util/tensor_bundle/naming.h"
    // b/291933687, b/291001524
    #if !defined(PLATFORM_WINDOWS) && !defined(__APPLE__)
    #include "tensorflow/cc/saved_model/fingerprinting_utils.h"
    #include "tensorflow/tools/proto_splitter/cc/util.h"
    #endif
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/stacktrace_handler.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/util/command_line_flags.h"
    
    #if defined(PLATFORM_WINDOWS)
    // Make mkdir resolve to _mkdir to create the test temporary directory.
    #include <direct.h>
    #define mkdir(name, mode) _mkdir(name)
    
    // Windows defines the following macros to convert foo to fooA or fooW,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
      TFE_DeleteExecutor(executor);
      TFE_DeleteContext(ctx);
    }
    
    void ExecuteAdd(bool async, bool forward_input, bool tfrt) {
    #ifdef PLATFORM_WINDOWS
      // On windows, we flakily get a failure due to pointer instability.
      // Disable the 4 tests using this helper until we fix the issue.
      return;
    #else
      TF_Status* status = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
Back to top