tensorflow python3和c c++的混合编程 SWIG demo

本文介绍如何使用SWIG(Simplified Wrapper and Interface Generator)在Python中调用C语言函数。通过示例展示了如何编写接口文件,以及如何在Python环境中运行SWIG生成的模块,实现C函数的调用,包括阶乘计算、取模运算和获取当前时间等操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

环境

a@ubuntu:~$ swig -version

SWIG Version 3.0.12


a@ubuntu:~$ lsb_release -a


No LSB modules are available.
Distributor ID:    Ubuntu
Description:    Ubuntu 18.04.2 LTS
Release:    18.04
Codename:    bionic

a@ubuntu:~$ python3 --version


Python 3.6.7

https://python3-cookbook.readthedocs.io/zh_CN/latest/c15/p09_wrap_c_code_with_swig.html

http://www.swig.org/tutorial.html

a@ubuntu:~/swigDemo/swigsrc$ swig -python -py3 sample.i
 

>>> import example
>>> example.fact(3)
6
>>> example.fact(4)
24
>>> example.my_mod(4,3)
1
>>> example.get_time()
'Mon Mar 11 21:11:14 2019\n'
>>> 
 

 /* File : example.c */
 
 #include <time.h>
 double My_variable = 3.0;
 
 int fact(int n) {
     if (n <= 1) return 1;
     else return n*fact(n-1);
 }
 
 int my_mod(int x, int y) {
     return (x%y);
 }
 	
 char *get_time()
 {
     time_t ltime;
     time(&ltime);
     return ctime(&ltime);
 }
 
 

Interface file

Now, in order to add these files to your favorite language, you need to write an "interface file" which is the input to SWIG. An interface file for these C functions might look like this :

 /* example.i */
 %module example
 %{
 /* Put header files here or function declarations like below */
 extern double My_variable;
 extern int fact(int n);
 extern int my_mod(int x, int y);
 extern char *get_time();
 %}
 
 extern double My_variable;
 extern int fact(int n);
 extern int my_mod(int x, int y);
 extern char *get_time();

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值