This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[v1.4.x] export exception handling APIs in MXNet (#13845)
* Get the correct include path in pip package (#13452) * add find_include_path API * address reviewer comment * change return type from list to string * add unit test * address reviewer comment * address reviewer comment * address reviewer comment * address reviewer comment * fix include path problem in pip package * add comment * fix lint error * address reviewer comment * address reviewer comment * Add extra header file to export for error checking (#13795) * add extra header file to include * fix sanity check * fix sanity * move c_api_common.h to include folder * fix build error * keep c_api_common.h internal * strip out error handling API into a separate header * consolidate comment into one paragraph per review * remove unnecessary include
- Loading branch information
1 parent
a9bdeb5
commit bf15539
Showing
2 changed files
with
71 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
/*! | ||
* Copyright (c) 2018 by Contributors | ||
* \file c_api_error.h | ||
* \brief Error handling for C API. | ||
*/ | ||
#ifndef MXNET_C_API_ERROR_H_ | ||
#define MXNET_C_API_ERROR_H_ | ||
|
||
/*! | ||
* \brief Macros to guard beginning and end section of all functions | ||
* every function starts with API_BEGIN() | ||
* and finishes with API_END() or API_END_HANDLE_ERROR() | ||
* The finally clause contains procedure to cleanup states when an error happens. | ||
*/ | ||
#define MX_API_BEGIN() try { on_enter_api(__FUNCTION__); | ||
#define MX_API_END() } catch(dmlc::Error &_except_) { on_exit_api(); return MXAPIHandleException(_except_); } on_exit_api(); return 0; // NOLINT(*) | ||
#define MX_API_END_HANDLE_ERROR(Finalize) } catch(dmlc::Error &_except_) { Finalize; on_exit_api(); return MXAPIHandleException(_except_); } on_exit_api(); return 0; // NOLINT(*) | ||
/*! | ||
* \brief Set the last error message needed by C API | ||
* \param msg The error message to set. | ||
*/ | ||
void MXAPISetLastError(const char* msg); | ||
/*! | ||
* \brief handle exception throwed out | ||
* \param e the exception | ||
* \return the return value of API after exception is handled | ||
*/ | ||
inline int MXAPIHandleException(const dmlc::Error &e) { | ||
MXAPISetLastError(e.what()); | ||
return -1; | ||
} | ||
|
||
namespace mxnet { | ||
extern void on_enter_api(const char *function); | ||
extern void on_exit_api(); | ||
} | ||
#endif // MXNET_C_API_ERROR_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters