Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetLoggedOpsTestonly (0.2 sec)

  1. tensorflow/c/eager/immediate_execution_context.h

      // Convert a TFRT TensorHandle to tensorflow::TensorHandle.
      virtual ImmediateExecutionTensorHandle* TFTensorHandleFromInterface(
          ImmediateExecutionTensorHandle* handle) = 0;
    
      virtual std::vector<std::string> GetLoggedOpsTestonly() { return {}; }
    
      // Get a list of the names of functions that have been registered.
      virtual std::vector<string> ListFunctionNames() = 0;
    
      struct CacheStats {
        int64_t kernel_cache_size;
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 06 08:34:00 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental.cc

    }
    
    void TFE_GetExecutedOpNames(TFE_Context* ctx, TF_Buffer* buf,
                                TF_Status* status) {
      const std::vector<std::string>& op_names =
          tensorflow::unwrap(ctx)->GetLoggedOpsTestonly();
    
      std::ostringstream op_names_oss;
      for (const auto& op : op_names) {
        op_names_oss << op << ", ";
      }
      const std::string& op_names_str = op_names_oss.str();
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 35.9K bytes
    - Viewed (3)
Back to top