Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TF_DeleteGraphProperties (0.16 sec)

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

      return reinterpret_cast<TF_GraphProperties*>(
          new tensorflow::grappler::GraphProperties(
              *reinterpret_cast<const tensorflow::grappler::GrapplerItem*>(item)));
    }
    
    void TF_DeleteGraphProperties(TF_GraphProperties* graph_properties) {
      if (graph_properties == nullptr) return;
      delete reinterpret_cast<tensorflow::grappler::GraphProperties*>(
          graph_properties);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top