Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for DLPack (0.3 seconds)

  1. tensorflow/c/eager/dlpack.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/eager/dlpack.h"
    
    #include <string>
    
    #include "include/dlpack/dlpack.h"  // from @dlpack
    #include "tensorflow/c/eager/c_api.h"
    #include "tensorflow/c/eager/c_api_experimental.h"
    #include "tensorflow/c/eager/tfe_tensorhandle_internal.h"
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Mar 13 23:41:52 GMT 2025
    - 13K bytes
    - Click Count (0)
  2. tensorflow/c/eager/dlpack.h

                                                TF_Status* status);
    
    // Converts eager tensor handle to DLPack (DLManagedTensor*), and return the
    // void* for further PyCapsule construction.
    TF_CAPI_EXPORT extern void* TFE_HandleToDLPack(TFE_TensorHandle* h,
                                                   TF_Status* status);
    
    // Converts DLPack (DLManagedTensor*) to eager tensor handle.
    TF_CAPI_EXPORT extern TFE_TensorHandle* TFE_HandleFromDLPack(void* dlm,
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Mar 13 23:41:52 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  3. tensorflow/c/eager/dlpack_test.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/eager/dlpack.h"
    
    #include <vector>
    
    #include "absl/strings/str_join.h"
    #include "include/dlpack/dlpack.h"  // from @dlpack
    #include "tensorflow/c/eager/c_api.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    namespace {
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Jun 30 03:04:46 GMT 2023
    - 4.4K bytes
    - Click Count (0)
  4. tensorflow/c/eager/BUILD

        srcs = [
            "c_api_experimental_reader.h",
        ],
        visibility = ["//tensorflow:__subpackages__"],
    )
    
    cc_library(
        name = "dlpack",
        srcs = ["dlpack.cc"],
        hdrs = ["dlpack.h"],
        copts = tf_copts() + [
            "-fexceptions",
            "-fno-strict-aliasing",
        ],
        features = ["-use_header_modules"],
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Feb 24 06:18:31 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  5. MODULE.bazel

    use_repo(
        xla_third_party,
        "FP16",
        "FXdiv",
        "XNNPACK",
        "compute_library",
        "cpuinfo",
        "cudnn_frontend_archive",
        "cutlass_archive",
        "dlpack",
        "ducc",
        "eigen_archive",
        "farmhash_archive",
        "farmhash_gpu_archive",
        "gemmlowp",
        "gloo",
        "highwayhash",
        "hwloc",
        "implib_so",
        "llvm-raw",
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Apr 02 01:32:13 GMT 2026
    - 11K bytes
    - Click Count (0)
  6. ci/official/utilities/repack_libtensorflow.sh

        tensorflow/c/c_api_macros.h \
        tensorflow/c/c_api_experimental.h \
        ${LIB_PKG}/include/tensorflow/c
      cp tensorflow/c/eager/c_api.h \
        tensorflow/c/eager/c_api_experimental.h \
        tensorflow/c/eager/dlpack.h \
        ${LIB_PKG}/include/tensorflow/c/eager
      cp tensorflow/core/platform/ctstring.h \
        tensorflow/core/platform/ctstring_internal.h \
        ${LIB_PKG}/include/tensorflow/core/platform
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jan 21 01:25:46 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  7. tensorflow/BUILD

        "@onednn//:__subpackages__",
        "@org_sqlite//:__subpackages__",
        "@platforms//:__subpackages__",
        "@snappy//:__subpackages__",
        "@upb//:__subpackages__",
        "@zlib//:__subpackages__",
        "@dlpack//:__subpackages__",
        "@arm_neon_2_x86_sse//:__subpackages__",
        "@cpuinfo//:__subpackages__",
        "@ruy//:__subpackages__",
        "@XNNPACK//:__subpackages__",
        "@pthreadpool//:__subpackages__",
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Mar 24 21:00:18 GMT 2026
    - 53.1K bytes
    - Click Count (0)
  8. RELEASE.md

    ### Security:
    
    *   Fixes an undefined behavior causing a segfault in `tf.raw_ops.Switch`,
        ([CVE-2020-15190](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15190))
    *   Fixes three vulnerabilities in conversion to DLPack format
        *   [CVE-2020-15191](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15191),
        *   [CVE-2020-15192](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15192),
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
Back to Top