Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for qmsg (0.12 sec)

  1. tensorflow/c/eager/c_api_test.cc

      TFE_TensorHandle* hdevice =
          TFE_TensorHandleCopyToDevice(hcpu, ctx, kErrorDevice, status.get());
      EXPECT_NE(TF_OK, TF_GetCode(status.get()));
      const char* msg = "NoSuchDevice:0 unknown device";
      EXPECT_TRUE(strstr(TF_Message(status.get()), msg) != nullptr)
          << TF_Message(status.get());
      TF_SetStatus(status.get(), TF_OK, "");
      const char* kCPUDevice = "CPU:0";
      TFE_TensorHandle* hcopy =
    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

        TF_Library* lib = TF_LoadLibrary(lib_path.c_str(), status);
        TF_Code code = TF_GetCode(status);
        string status_msg(TF_Message(status));
        TF_DeleteStatus(status);
        ASSERT_EQ(TF_OK, code) << status_msg;
    
        // Test op list.
        TF_Buffer op_list_buf = TF_GetOpList(lib);
        tensorflow::OpList op_list;
    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