Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Command (0.17 sec)

  1. .bazelrc

    build:android --dynamic_mode=off
    
    # Sets the default Apple platform to macOS.
    build:macos --apple_platform_type=macos
    
    # gRPC on MacOS requires this #define
    build:macos --copt=-DGRPC_BAZEL_BUILD
    
    # Avoid hitting command line argument limit
    build:macos --features=archive_param_file
    
    # Settings for MacOS on ARM CPUs.
    build:macos_arm64 --cpu=darwin_arm64
    build:macos_arm64 --macos_minimum_os=11.0
    
    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. configure.py

      system_specific_test_config(environ_cp)
    
      configure_ios(environ_cp)
    
      print('Preconfigured Bazel build configs. You can use any of the below by '
            'adding "--config=<>" to your build command. See .bazelrc for more '
            'details.')
      config_info_line('mkl', 'Build with MKL support.')
      config_info_line(
          'mkl_aarch64',
    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)
  3. tensorflow/BUILD

    # On Linux, tell the linker (-Wl,<option>) to use a version script that
    # excludes all but a subset of function names.
    # On MacOS, the linker does not support version_script, but has an
    # an "-exported_symbols_list" command.  -z defs disallows undefined
    # symbols in object files.
    
    tf_cc_shared_object(
        name = "tensorflow",
        linkopts = select({
            "//tensorflow:macos": [
    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)
  4. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    #include "tensorflow/core/lib/io/path.h"
    #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)
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
Back to top