码迷,mamicode.com
首页 >  
搜索关键字:shared libraries    ( 4577个结果
C/C++调用.so文件
g++ -std=c++11 testlibc.cpp -shared -fPIC -o libtest.so编译成动态库 gcc main.c libtest.so -o main 编译 ./main ...
分类:编程语言   时间:2020-07-10 15:13:59    阅读次数:122
段落缩进
from docx import Document from docx.shared import Pt,Inches #Pt指镑(int类型),Inches指英寸(float类型) w=Document(r'D:\word练习\练习.docx') for paragraph in w.paragr ...
分类:其他好文   时间:2020-07-08 22:51:25    阅读次数:65
vs2017调用libtorch 报一堆错误
严重性 代码 说明 项目 文件 行 禁止显示状态 错误 C7525 内联变量至少需要 "/std:c++17" libtorch-win-shared-with-deps-1.5.1\libtorch\include\c10\util\bfloat16-inl.h 66 严重性 代码 说明 项目 文 ...
分类:其他好文   时间:2020-07-07 20:38:49    阅读次数:176
67.python操作word文档
1.python操作word文档: import docx from docx.oxml.ns import qn from docx.shared import Pt, RGBColor, Inches from docx.enum.text import WD_PARAGRAPH_ALIGNME ...
分类:编程语言   时间:2020-07-06 10:51:25    阅读次数:71
【C++多线程】std::future、std::async、std::promise、std::packaged_task、std::shared_future
如图以下是头文件<future>中的类容。 std::future<T> future有两个类模板,一个独占的std::future,也就是只能被获取一次,另一个是共享的std::shared_future。std::future<T>是一个类模板,其中T是要存储的值的类型,std::future ...
分类:编程语言   时间:2020-07-06 10:34:46    阅读次数:59
LTE - DL-SCH HARQ Modeling
Introduction The Downlink Shared Channel (DL-SCH) is described in TS36.212, Section 5.3.2. This example demonstrates how a transmitter retransmits a s ...
分类:其他好文   时间:2020-07-05 19:12:43    阅读次数:86
eclipse里安装javafx
转:https://blog.csdn.net/weixin_42978870/article/details/83623435 方案一 1、在使用的项目右击,点击Build Path → Configure Build Path 2、在弹出的窗口中点击Libraries选项卡 3、展开JRE Sy ...
分类:编程语言   时间:2020-07-05 18:57:34    阅读次数:317
python如何调用C语言程序
首先我们需要将编写好的c程序文件编译为动态库文件(后缀名为.so) 使用下面的命令: gcc 原文件名.c -shared -o 新文件名.so 然后在python程序中导入模块:from ctypes import * 在python中引入c动态库,并定义一个变量用来接收动态库: a=cdll.L ...
分类:编程语言   时间:2020-07-05 10:47:11    阅读次数:98
LTE DL-SCH and PDSCH Processing Chain
Introduction In LTE the Downlink Shared Channel (DL-SCH) is a transport channel used for the transmission of user data, dedicated control and user-spe ...
分类:其他好文   时间:2020-07-05 00:30:22    阅读次数:93
PostgreSQL--信号量和shmall 和 shmmax相关设置
一、shared_buffers与shmmax,shmall,max_connections的关系 1.1、shared_buffers与max_connections的关系 shared_buffers 是查询缓存,设置比较大可以提高PostgreSQL的效率,一般建议设置为系统内存的3/4,但是 ...
分类:数据库   时间:2020-07-04 16:52:42    阅读次数:80
4577条   上一页 1 ... 10 11 12 13 14 ... 458 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!