Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tag (0.14 sec)

  1. tensorflow/c/eager/c_api_test.cc

        TFE_DeleteTensorHandle(hcopy);
        if (TF_GetCode(status.get()) != TF_OK) {
          ADD_FAILURE() << tag;
          continue;
        }
        EXPECT_EQ(TF_TensorByteSize(t), TF_TensorByteSize(tcopy)) << tag;
        EXPECT_EQ(
            0, memcmp(TF_TensorData(t), TF_TensorData(tcopy), TF_TensorByteSize(t)))
            << tag;
        TF_DeleteTensor(tcopy);
      }
    
      TF_DeleteDeviceList(devices);
      TF_DeleteTensor(t);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
  2. tensorflow/c/c_api_test.cc

    #include "tensorflow/c/tf_buffer_internal.h"
    #include "tensorflow/c/tf_status.h"
    #include "tensorflow/c/tf_tensor.h"
    #include "tensorflow/cc/saved_model/signature_constants.h"
    #include "tensorflow/cc/saved_model/tag_constants.h"
    #include "tensorflow/core/example/example.pb.h"
    #include "tensorflow/core/example/feature.pb.h"
    #include "tensorflow/core/framework/api_def.pb.h"
    #include "tensorflow/core/framework/common_shape_fns.h"
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
Back to top