|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * Copyright 2020 Huawei Technologies Co., Ltd
- *
- * Licensed 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.
- */
-
- #ifndef INC_FRAMEWORK_COMMON_GE_PROFILING_H_
- #define INC_FRAMEWORK_COMMON_GE_PROFILING_H_
-
- #include ""
- namespace ge {
- #define MAX_DEV_NUM (64)
- enum MsprofCommandHandleType {
- kProfCommandhandleInit = 0,
- kProfCommandhandleStart,
- kProfCommandhandleStop,
- kProfCommandhandleFinalize,
- kProfCommandhandleModelSubscribe,
- kProfCommandhandleModelUnsubscribe
- };
-
- struct ProfCommand {
- uint64_t prof_switch;
- uint32_t dev_nums;
- uint32_t device_list[MAX_DEV_NUM];
- uint32_t model_id; // for subscribe
- }
-
- Status GeRegProfCtrlCallback(MsprofCtrlCallback func);
- Status GeRegProfSetDeviceCallback(MsprofSetDeviceCallback func);
- Status GeRegProfReporterCallback(MsprofReporterCallback func);
- Status GeProfCommandHandle(MsprofCommandHandleType type, void *data, uint32_t len);
- bool IsGeInitialize();
-
- } // namespace
-
- #endif // INC_FRAMEWORK_COMMON_GE_PROFILING_H_
|