Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for development (0.33 sec)

  1. README.md

    discussion, and please direct specific questions to
    [Stack Overflow](https://stackoverflow.com/questions/tagged/tensorflow).**
    
    The TensorFlow project strives to abide by generally accepted best practices in
    open-source software development.
    
    ## Patching guidelines
    
    Follow these steps to patch a specific version of TensorFlow, for example, to
    apply fixes to bugs or security vulnerabilities:
    
    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)
  2. tensorflow/c/experimental/grappler/grappler.h

    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/tf_status.h"
    
    // --------------------------------------------------------------------------
    // C API for Graph. The API is under active development and eventually
    // should allow registering a plugin graph optimizer with TensorFlow.
    //
    // Conventions:
    //   * Struct prefix indicates whether struct fields should be filled by the
    //     plugin or core implementation:
    C
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Aug 03 18:08:43 GMT 2022
    - 12.5K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

        [tensorflow/build Docker images](https://hub.docker.com/r/tensorflow/build)
        (`tensorflow/tensorflow:devel` and `tensorflow/tensorflow:devel-gpu` are no
        longer supported for) development. Use TF SIG Build Dockerfiles in
        development to avoid installing the packages directly on your system (in
        which case remember to change the directory from `/root` to `/tensorflow`
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    // TODO(jeff,sanjay):
    // - export functions to set Config fields
    
    // --------------------------------------------------------------------------
    // The new graph construction API, still under development.
    
    // Represents a computation graph.  Graphs may be shared between sessions.
    // Graphs are thread-safe when used as directed below.
    typedef struct TF_Graph TF_Graph;
    
    // Return a new graph object.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  5. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

    ln -s "/usr/include/linux" "${TARGET}/usr/include/linux"
    ln -s "/usr/include/asm-generic" "${TARGET}/usr/include/asm-generic"
    ln -s "/usr/include/aarch64-linux-gnu/asm" "${TARGET}/usr/include/asm"
    
    # Download glibc's shared and development libraries based on the value of the
    # `VERSION` parameter.
    # Note: 'Templatizing' this and the other conditional branches would require
    # defining several variables (version, os, path) making it difficult to maintain
    Shell Script
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Sep 29 00:26:34 GMT 2023
    - 6.1K bytes
    - Viewed (1)
  6. tensorflow/c/experimental/next_pluggable_device/c_api.h

    #include "tensorflow/c/tf_buffer.h"
    #include "tensorflow/c/tf_status.h"
    #include "xla/pjrt/c/pjrt_c_api.h"
    
    // --------------------------------------------------------------------------
    // C API for device. The API is under active development and eventually
    // should allow registering a plugin device with TensorFlow.
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // TF_Device is a C wrapper to the C++ TF Device class. This is to be passed
    C
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Dec 20 20:01:06 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  7. SECURITY.md

    TensorFlow has several execution modes, with Eager-mode being the default in v2.
    Eager mode lets users write imperative-style statements that can be easily
    inspected and debugged and it is intended to be used during the development
    phase.
    
    As part of the differences that make Eager mode easier to debug, the [shape
    inference
    functions](https://www.tensorflow.org/guide/create_op#define_the_op_interface)
    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)
  8. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # This flag specifies whether TensorFlow 2.0 API should be built instead
    # of 1.* API. Note that TensorFlow 2.0 API is currently under development.
    config_setting(
        name = "api_version_2",
        define_values = {"tf_api_version": "2"},
        visibility = ["//visibility:public"],
    )
    
    # This flag enables experimental MLIR support.
    config_setting(
    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)
  9. RELEASE.md

    and
    [issues tagged with `2.0`](https://github.com/tensorflow/tensorflow/issues?q=is%3Aopen+is%3Aissue+label%3A2.0)
    on GitHub for insight into recent issues and development progress.
    
    If you experience any snags when using TF 2.0, please let us know at the
    [TF 2.0 Testing User Group](https://groups.google.com/a/tensorflow.org/forum/?utm_medium=email&utm_source=footer#!forum/testing).
    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