Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for program (0.31 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

     
    -others += $(LINKS_DSO_PROGRAM)
    -others-noinstall += $(LINKS_DSO_PROGRAM)
    -
     $(objpfx)test-container : $(libsupport)
     $(objpfx)shell-container : $(libsupport)
     $(objpfx)echo-container : $(libsupport)
    diff --git a/support/links-dso-program.cc b/support/links-dso-program.cc
    index 8ff3155..f9d2b77 100644
    --- a/support/links-dso-program.cc
    +++ b/support/links-dso-program.cc
    @@ -3,6 +3,11 @@
        backported.  */
    Others
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api.h

    // TFE_Execute in the same thread will use the device policy specified here
    // instead of the device policy used to construct the context. This has no
    // effect on the device policy used by other program threads.
    TF_CAPI_EXPORT extern void TFE_ContextSetThreadLocalDevicePlacementPolicy(
        TFE_Context* ctx, TFE_ContextDevicePlacementPolicy policy);
    
    // Returns the device placement policy to be used by this context in the current
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Apr 27 21:07:00 GMT 2023
    - 22.8K bytes
    - Viewed (1)
  3. ci/devinfra/docker_windows/Dockerfile

    # are made to the Windows 10 SDK.
    RUN $old_path = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\"); \
        [Environment]::SetEnvironmentVariable(\"PATH\", $old_path + \";C:\Program Files (x86)\Windows Kits\10\App Certification Kit\", \"Machine\");
    
    # Install WiX toolset (v4) - Necessary for MSI Installer/Signing builds
    RUN dotnet tool install --global wix
    
    # Install msys2, packages and add to path.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  4. README.md

    *Nightly binaries are available for testing using the
    [tf-nightly](https://pypi.python.org/pypi/tf-nightly) and
    [tf-nightly-cpu](https://pypi.python.org/pypi/tf-nightly-cpu) packages on PyPi.*
    
    #### *Try your first TensorFlow program*
    
    ```shell
    $ python
    ```
    
    ```python
    >>> import tensorflow as tf
    >>> tf.add(1, 2).numpy()
    3
    >>> hello = tf.constant('Hello, TensorFlow!')
    >>> hello.numpy()
    b'Hello, TensorFlow!'
    ```
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 05 15:00:10 GMT 2023
    - 11.9K bytes
    - Viewed (0)
  5. tensorflow/c/eager/parallel_device/parallel_device_lib_test.cc

      EXPECT_THAT(TF_Message(status.get()), HasSubstr("assertion failed"));
    
      // Note that future collectives with the same context do not work at the
      // moment; once canceled, the collective executor requires the program to be
      // restarted / context to be reset.
    }
    
    TEST(PARALLEL_DEVICE_LIB, TestDifferentShapes) {
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> status(
          TF_NewStatus(), TF_DeleteStatus);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 08 23:47:35 GMT 2021
    - 15.3K bytes
    - Viewed (0)
  6. SECURITY.md

    covering security practices for the entirety of the TensorFlow ecosystem.
    
    ## TensorFlow models are programs
    
    TensorFlow
    [**models**](https://developers.google.com/machine-learning/glossary/#model) (to
    use a term commonly used by machine learning practitioners) are expressed as
    programs that TensorFlow executes. TensorFlow programs are encoded as
    computation
    [**graphs**](https://developers.google.com/machine-learning/glossary/#graph).
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Sun Oct 01 06:06:35 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  7. configure.py

      Args:
        environ_cp: (Dict) copy of the os.environ.
    
      Returns:
        string value for clang_compiler_path.
      """
      # Default path if clang-16 is installed by using apt-get install
      default_clang_path = 'C:/Program Files/LLVM/bin/clang.exe'
      if not os.path.exists(default_clang_path):
        default_clang_path = which('clang') or ''
    
      clang_compiler_path = prompt_loop_or_load_from_env(
          environ_cp,
    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)
  8. tensorflow/c/eager/c_api_experimental.h

    // APIs for Counter without label.
    typedef struct TFE_MonitoringCounter0 TFE_MonitoringCounter0;
    // Returns a new Counter metric object. The caller should manage lifetime of
    // the object. Using duplicate metric name will crash the program with fatal
    // error.
    TF_CAPI_EXPORT extern TFE_MonitoringCounter0* TFE_MonitoringNewCounter0(
        const char* name, TF_Status* status, const char* description);
    // Deletes the Counter object.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  9. RELEASE.md

        1.  To switch tf.keras to use Keras 2 (tf-keras), set the environment
            variable TF_USE_LEGACY_KERAS=1 directly or in your python program by
            import os;os.environ["TF_USE_LEGACY_KERAS"]=1. Please note that this
            will set it for all packages in your Python runtime program
    
    *   1.  Change import of keras from tensorflow as follows
    *   import tensorflow.keras as keras and import keras to import tf_keras as
        keras
    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