mirror of
				https://github.com/PaddlePaddle/FastDeploy.git
				synced 2025-10-31 11:56:44 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
 | |
| //
 | |
| // 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.
 | |
| #include "fastdeploy/pybind/main.h"
 | |
| #include "fastdeploy/runtime/backends/rknpu2/option.h"
 | |
| namespace fastdeploy {
 | |
| void BindRKNPU2Config(pybind11::module& m) {
 | |
|   pybind11::enum_<fastdeploy::rknpu2::CpuName>(
 | |
|       m, "CpuName", pybind11::arithmetic(), "CpuName for inference.")
 | |
|       .value("RK356X", fastdeploy::rknpu2::CpuName::RK356X)
 | |
|       .value("RK3588", fastdeploy::rknpu2::CpuName::RK3588)
 | |
|       .value("UNDEFINED", fastdeploy::rknpu2::CpuName::UNDEFINED);
 | |
|   pybind11::enum_<fastdeploy::rknpu2::CoreMask>(
 | |
|       m, "CoreMask", pybind11::arithmetic(), "CoreMask for inference.")
 | |
|       .value("RKNN_NPU_CORE_AUTO",
 | |
|              fastdeploy::rknpu2::CoreMask::RKNN_NPU_CORE_AUTO)
 | |
|       .value("RKNN_NPU_CORE_0", fastdeploy::rknpu2::CoreMask::RKNN_NPU_CORE_0)
 | |
|       .value("RKNN_NPU_CORE_1", fastdeploy::rknpu2::CoreMask::RKNN_NPU_CORE_1)
 | |
|       .value("RKNN_NPU_CORE_2", fastdeploy::rknpu2::CoreMask::RKNN_NPU_CORE_2)
 | |
|       .value("RKNN_NPU_CORE_0_1",
 | |
|              fastdeploy::rknpu2::CoreMask::RKNN_NPU_CORE_0_1)
 | |
|       .value("RKNN_NPU_CORE_0_1_2",
 | |
|              fastdeploy::rknpu2::CoreMask::RKNN_NPU_CORE_0_1_2)
 | |
|       .value("RKNN_NPU_CORE_UNDEFINED",
 | |
|              fastdeploy::rknpu2::CoreMask::RKNN_NPU_CORE_UNDEFINED);
 | |
| }
 | |
| }  // namespace fastdeploy
 | 
