Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for getErrorCollector (0.15 sec)

  1. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

        }
        TF_DeleteStatus(status);
      }
    
      Py_RETURN_TRUE;
    }
    
    std::vector<std::string> RetrieveCollectedErrors() {
      mlir::TFL::ErrorCollector* collector =
          mlir::TFL::ErrorCollector::GetErrorCollector();
      std::vector<std::string> collected_errors;
      for (const auto& error_data : collector->CollectedErrors()) {
        collected_errors.push_back(error_data.SerializeAsString());
      }
      collector->Clear();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top