Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TF_GetOutputPropertiesList (0.24 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*> out_props_buf(num_values, TF_NewBuffer());
    
          TF_GetOutputPropertiesList(graph_properties, node.name().c_str(),
                                     out_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_Buffer** properties, int num_values, TF_Status* status);
    
    // Get a list of output OpInfo::TensorProperties given node name.
    // Return the serialized list `properties`.
    TF_CAPI_EXPORT extern void TF_GetOutputPropertiesList(
        TF_GraphProperties* graph_properties, const char* name,
        TF_Buffer** properties, int num_values, TF_Status* status);
    
    // Helper to maintain a map between function names in a given
    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

            tensorflow::MessageToBuffer(tensor_properties[i], properties[i]);
        if (!s.ok()) {
          tsl::Set_TF_Status_from_Status(status, s);
          return;
        }
      }
    }
    
    void TF_GetOutputPropertiesList(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