Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for macos (0.22 sec)

  1. .bazelrc

    build:release_macos_x86 --config=avx_linux
    build:release_macos_x86 --cpu=darwin
    # Target Catalina as the minimum compatible OS version
    build:release_macos_x86 --macos_minimum_os=10.15
    build:release_macos_x86 --action_env MACOSX_DEPLOYMENT_TARGET=10.15
    
    # Build configs for macOS Arm64
    build:release_macos_arm64 --config=release_macos_base
    build:release_macos_arm64 --cpu=darwin_arm64
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  2. tensorflow/BUILD

            [],
        ),
        values = {
            "apple_platform_type": "macos",
            "cpu": "darwin_x86_64",
        },
    )
    
    selects.config_setting_group(
        name = "macos_x86_64",
        match_any = [
            ":macos_x86_64_default",
            ":macos_x86_64_crosscompile",
        ],
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "macos_arm64",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  3. configure.py

    ]
    
    
    class UserInputError(Exception):
      pass
    
    
    def is_windows():
      return platform.system() == 'Windows'
    
    
    def is_linux():
      return platform.system() == 'Linux'
    
    
    def is_macos():
      return platform.system() == 'Darwin'
    
    
    def is_ppc64le():
      return platform.machine() == 'ppc64le'
    
    
    def is_s390x():
      return platform.machine() == 's390x'
    
    
    def is_cygwin():
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/archive/zip/reader_test.go

    				Modified: time.Date(2011, 12, 8, 10, 6, 8, 0, timeZone(0)),
    				Mode:     0444,
    			},
    		},
    	},
    	{
    		// created by Go, before we wrote the "optional" data
    		// descriptor signatures (which are required by macOS).
    		// Use obscured file to avoid Appleā€™s notarization service
    		// rejecting the toolchain due to an inability to unzip this archive.
    		// See golang.org/issue/34986
    		Name:     "go-no-datadesc-sig.zip.base64",
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    			// return FileNotFound to indicate its an empty prefix.
    			if HasSuffix(deletePath, SlashSeparator) {
    				return errFileNotFound
    			}
    			// if we have .DS_Store only on macOS
    			if runtime.GOOS == globalMacOSName {
    				storeFilePath := pathJoin(deletePath, ".DS_Store")
    				_, err := Stat(storeFilePath)
    				// .DS_Store exists
    				if err == nil {
    					// delete first
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // 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,
    // depending on the type of the string argument. We don't use these macros, so
    // undefine them here.
    #undef CopyFile
    #undef DeleteFile
    #undef TranslateName
    #endif  // defined(PLATFORM_WINDOWS)
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_C_API_H_
    #define TENSORFLOW_C_C_API_H_
    
    #include <stddef.h>
    #include <stdint.h>
    
    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/tf_attrtype.h"
    #include "tensorflow/c/tf_buffer.h"
    #include "tensorflow/c/tf_datatype.h"
    #include "tensorflow/c/tf_status.h"
    #include "tensorflow/c/tf_tensor.h"
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  8. tensorflow/c/experimental/filesystem/filesystem_interface.h

    // LINT.ThenChange(:filesystem_ops_version)
    
    /// SECTION 3. ABI and API compatibility
    /// ----------------------------------------------------------------------------
    ///
    /// In this section we define constants and macros to record versioning
    /// information for each of the structures in section 2: ABI and API versions
    /// and the number of functions in each of the function tables (which is
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_test.cc

            ::tensorflow::strings::StrCat("name", counter_++).c_str());
      }
    
      TF_Status* s_;
    
     private:
      TF_Graph* graph_;
      int counter_;
    };
    
    // Helper macros for the TF_OperationGetAttr* tests.
    // TODO(ashankar): Use gmock matchers instead?
    // (https://github.com/google/googletest/blob/master/googlemock/docs/CookBook.md#writing-new-parameterized-matchers-quickly)
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  10. tensorflow/c/eager/c_api_test.cc

    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/platform/casts.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/logging.h"
    #include "tensorflow/core/platform/macros.h"
    #include "tensorflow/core/platform/protobuf.h"
    #include "tensorflow/core/platform/strcat.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/platform/test_benchmark.h"
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
Back to top