Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for tf_shape_internal (0.31 sec)

  1. tensorflow/c/tf_shape_internal.h

    Brian Zhao <******@****.***> 1601425249 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 00:25:41 UTC 2020
    - 1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/internal/tensor_spec.cc

    #include "tensorflow/c/experimental/saved_model/core/tensor_spec.h"
    #include "tensorflow/c/experimental/saved_model/internal/tensor_spec_type.h"
    #include "tensorflow/c/tf_shape_internal.h"
    
    extern "C" {
    
    TF_DataType TF_TensorSpecDataType(const TF_TensorSpec* spec) {
      return static_cast<TF_DataType>(tensorflow::unwrap(spec)->dtype());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/c/tf_shape.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/tf_shape.h"
    
    #include <stdint.h>
    
    #include "tensorflow/c/tf_shape_internal.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    
    extern "C" {
    
    TF_Shape* TF_NewShape() {
      return tensorflow::wrap(new tensorflow::PartialTensorShape());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 00:25:41 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/c/BUILD

        copts = tf_copts(),
        visibility = ["//visibility:public"],
        deps = [
            ":c_api_macros",
            ":tf_shape_internal",
            "//tensorflow/core:framework",
        ],
    )
    
    cc_library(
        name = "tf_shape_internal",
        hdrs = ["tf_shape_internal.h"],
        copts = tf_copts(),
        visibility = ["//tensorflow:internal"],
        deps = [
            ":conversion_macros",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/internal/BUILD

            "//tensorflow/c:tf_shape",
            "//tensorflow/c:tf_shape_internal",
            "//tensorflow/c/experimental/saved_model/core:tensor_spec",
        ],
    )
    
    cc_library(
        name = "tensor_spec_type",
        hdrs = [
            "tensor_spec_type.h",
        ],
        deps = [
            "//tensorflow/c:conversion_macros",
            "//tensorflow/c:tf_shape_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 20:19:06 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top