mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
11 lines
345 B
C
11 lines
345 B
C
|
// Copyright (c) OpenMMLab. All rights reserved.
|
||
|
|
||
|
#ifndef MMDEPLOY_TEST_DEFINE_H
|
||
|
#define MMDEPLOY_TEST_DEFINE_H
|
||
|
|
||
|
static constexpr const char *kBackends = "@MMDEPLOY_TARGET_BACKENDS@";
|
||
|
static constexpr const char *kDevices = "@MMDEPLOY_TARGET_DEVICES@";
|
||
|
static constexpr const char *kCodebases = "@CODEBASES@";
|
||
|
|
||
|
#endif // MMDEPLOY_TEST_DEFINE_H
|