Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TF_GetInputPropertiesList (0.17 sec)

  1. tensorflow/c/experimental/grappler/grappler_test.cc

          EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
          EXPECT_EQ(num_values, 1);
    
          std::vector<TF_Buffer*> in_props_buf(num_values, TF_NewBuffer());
    
          TF_GetInputPropertiesList(graph_properties, node.name().c_str(),
                                    in_props_buf.data(), num_values, status);
          EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Thu Apr 13 22:30:58 GMT 2023
    - 11.6K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/grappler/grappler.h

        TF_Status* status);
    
    // Get a list of input OpInfo::TensorProperties given node name.
    // Return the serialized list `properties`.
    TF_CAPI_EXPORT extern void TF_GetInputPropertiesList(
        TF_GraphProperties* graph_properties, const char* name,
        TF_Buffer** properties, int num_values, TF_Status* status);
    
    // Get a list of output OpInfo::TensorProperties given node name.
    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. tensorflow/c/experimental/grappler/grappler.cc

      TF_SetStatus(status, TF_OK, "");
      *num_values =
          reinterpret_cast<tensorflow::grappler::GraphProperties*>(graph_properties)
              ->GetOutputProperties(name)
              .size();
    }
    
    void TF_GetInputPropertiesList(TF_GraphProperties* graph_properties,
                                   const char* name, TF_Buffer** properties,
                                   int num_values, TF_Status* status) {
      TF_SetStatus(status, TF_OK, "");
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 15K bytes
    - Viewed (1)
Back to top