Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsPlaceholder (0.14 sec)

  1. tensorflow/c/c_test_util.cc

    TF_Operation* Split3(TF_Operation* input, TF_Graph* graph, TF_Status* s,
                         const char* name) {
      TF_Operation* op;
      Split3Helper(input, graph, s, name, &op);
      return op;
    }
    
    bool IsPlaceholder(const tensorflow::NodeDef& node_def) {
      if (node_def.op() != "Placeholder" || node_def.name() != "feed") {
        return false;
      }
      bool found_dtype = false;
      bool found_shape = false;
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Sat Oct 04 05:55:32 UTC 2025
    - 17.8K bytes
    - Viewed (1)
Back to top