Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ios (0.19 sec)

  1. .gitignore

    *.whl
    
    # Android
    .gradle
    .idea
    *.iml
    local.properties
    gradleBuild
    
    # iOS
    *.pbxproj
    *.xcworkspace
    /*.podspec
    /tensorflow/lite/**/coreml/**/BUILD
    /tensorflow/lite/**/ios/BUILD
    /tensorflow/lite/**/objc/BUILD
    /tensorflow/lite/**/swift/BUILD
    /tensorflow/lite/examples/ios/simple/data/*.tflite
    /tensorflow/lite/examples/ios/simple/data/*.txt
    Podfile.lock
    Pods
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Jan 31 22:28:59 GMT 2024
    - 934 bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_helper.cc

      std::remove(name_.c_str());
    }
    
    const std::string TempFile::getName() const { return name_; }
    
    bool TempFile::truncate() {
      std::fstream::close();
      std::fstream::open(name_, std::ios::binary | std::ios::out);
      return std::fstream::is_open();
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Jun 26 14:56:58 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  3. .bazelrc

    build:macos_arm64 --macos_minimum_os=11.0
    
    # iOS configs for each architecture and the fat binary builds.
    build:ios --apple_platform_type=ios
    build:ios --apple_bitcode=embedded --copt=-fembed-bitcode
    build:ios --copt=-Wno-c++11-narrowing
    build:ios_armv7 --config=ios
    build:ios_armv7 --cpu=ios_armv7
    build:ios_arm64 --config=ios
    build:ios_arm64 --cpu=ios_arm64
    build:ios_arm64e --config=ios
    build:ios_arm64e --cpu=ios_arm64e
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  4. configure.py

    ]
    
    # List of files to configure when building Bazel on Apple platforms.
    APPLE_BAZEL_FILES = [
        'tensorflow/lite/ios/BUILD', 'tensorflow/lite/objc/BUILD',
        'tensorflow/lite/swift/BUILD',
        'tensorflow/lite/tools/benchmark/experimental/ios/BUILD'
    ]
    
    # List of files to move when building for iOS.
    IOS_FILES = [
        'tensorflow/lite/objc/TensorFlowLiteObjC.podspec',
        'tensorflow/lite/swift/TensorFlowLiteSwift.podspec',
    ]
    
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_helper.h

    #include <fstream>
    #include <string>
    
    class TempFile : public std::fstream {
     public:
      // We should specify openmode each time we call TempFile.
      TempFile(const std::string& temp_file_name, std::ios::openmode mode);
      TempFile(TempFile&& rhs);
      ~TempFile() override;
      const std::string getName() const;
      bool truncate();
    
     private:
      const std::string name_;
    };
    
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Jun 26 14:56:58 GMT 2020
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

               TempFile(temp_file_name, std::ios::binary | std::ios::trunc), false,
               static_cast<int64_t>(metadata->size())});
        } else if (TF_GetCode(status) == TF_NOT_FOUND) {
          file->plugin_file = new tf_writable_file::GCSFile(
              {std::move(bucket), std::move(object), &gcs_file->gcs_client,
               TempFile(temp_file_name, std::ios::binary | std::ios::trunc), true,
               0});
        } else {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Aug 23 06:55:53 GMT 2023
    - 46.9K bytes
    - Viewed (0)
  7. tensorflow/BUILD

            ":macos_arm64",
        ],
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "ios",
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:ios"],
            [],
        ),
        values = if_oss(
            {"apple_platform_type": "ios"},
            {},
        ),
        visibility = ["//visibility:public"],
    )
    
    # TODO(jakeharmon8): Remove in favor of TSL version
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  8. RELEASE.md

    *   [Performance] Increase performance of `tf.layers.conv2d` when setting
        use_bias=True by 2x by using nn.bias_add.
    *   Update iOS examples to use CocoaPods, and moved to tensorflow/examples/ios.
    *   Adds a family= attribute in `tf.summary` ops to allow controlling the tab
        name used in Tensorboard for organizing summaries.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top