积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(183)C++(183)Conan(74)

语言

全部英语(181)中文(简体)(1)英语(1)

格式

全部PDF文档 PDF(177)PPT文档 PPT(6)
 
本次搜索耗时 0.017 秒,为您找到相关结果约 183 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 A New Dragon in the Den: Fast Conversion From Floating-Point Numbers

    Bicho de sete cabeças. It's not a seven-headed beast. It's not rocket science.Cassio Neri Fast conversion from floating-point numbers CppCon 2024 - Aurora (Independent Researcher)MeMe O Neri's equationMe https://godbolt.org/z/qh4zdzqG61 2 3 Integer to string #hundreds 1 / 10 / 10 1 2 3 % 10 % 10 % 10 #units 123 #tens 121 2 3 Integer to string #hundreds 1 / 10 and thus, . F u v v − u = 10 F > 2E The larger , the shorter . F n We set to be the largest integer such that , i.e., F 10 F ≤ 2E u vTejú Jaguá - Ⅰ n × 10 F ≅ m × 2E 2E There must be some inside
    0 码力 | 171 页 | 6.42 MB | 6 月前
    3
  • pdf文档 Back to Basics - Function Call Resolution

    match.  The Standard C getcharreturns the character read as an int, not a char.  getcharuses the integer value EOFto represent end-of-file and I/O failures.  putcharhas a parameter of type int(not char) conversions…  Calling f(int)requires no conversion at all.  It’s an exact match.  Calling f(long int)requires converting intinto “long int”.  This is an integral conversion.  Calling f(char *)requires converting converting intinto “pointer to char”.  This is a pointer conversion. 19 Exact Matches Always Win  The compiler prefers “cheap” conversions.  Exact matches are the cheapest of all.  Thus, f(0)calls:
    0 码力 | 44 页 | 1.30 MB | 6 月前
    3
  • pdf文档 Building Safe and Reliable Surgical Robotics with C++

    disallowed Compiler Flag Supported Since Description -Wconversion, -Wsign-conversion GCC 2.95.3, Clang 4.0.0 Enable implicit conversion warnings -fstack-protector-strong GCC 4.9.0 Clang 6.0.0 Enable run-time s GCC 3.0.0, Clang 7.0.0 Force retention of null pointer checks -fno-strict-overflow GCC 4.2.0 Integer overflow may occur -fno-strict-aliasing GCC 2.95.3, Clang 18.0.0 Do not assume strict aliasing 0 Perform trivial auto variable initialization -Wconversion, -Wsign-conversion GCC 2.95.3, Clang 4.0.0 Enable implicit conversion warnings -fstack-clash-protection GCC 8.0.0, Clang 11.0.0 Enable run-time
    0 码力 | 71 页 | 4.02 MB | 6 月前
    3
  • pdf文档 Modern C++ Tutorial: C++11/14/17/20 On the Fly

    generates copy constructors and copy assignment operators are deprecated. • C language style type conversion is deprecated (ie using (convert_type)) before vari- ables, and static_cast, reinterpret_cast NULL as ((void*)0), then in the following code: char *ch = NULL; C++ without the void * implicit conversion has to define NULL as 0. This still creates a new problem. Defining NULL to 0 will cause the overloading defined implements type safety. First, it cannot be implicitly converted to an integer, nor can it be compared to integer numbers, and it is even less likely to compare enumerated values of different
    0 码力 | 92 页 | 1.79 MB | 1 年前
    3
  • pdf文档 Delivering safe C++

    unanticipated conversions: For example, an unanticipated wraparound of an unsigned integer loop variable or a narrowing conversion. • Timing errors: for example, delivering a result in 1.2ms to a device supposedly Concurrent task • Message queue • Coroutine • Hash table • Graphical shape • Complex number • Infinite integer Stroustrup - C++ safety -CppCon - October 2023 18 Some are still not standardimmutability • Constants unmentioned • Often the need to inter-operate with other languages is unmentioned • Often the cost of conversion is underestimated • This is natural • Human nature • Which other language? • Must interoperate
    0 码力 | 74 页 | 2.72 MB | 6 月前
    3
  • pdf文档 LLVM's Realtime Safety Revolution: Tools for Modern Mission Critical Systems

    3. Cost 4. Disabling each tool 5. Using each tool outside of LLVM ContrastRun time cost Code conversion cost Performance constraints RealtimeSanitizerRealtimeSanitizer run-time cost Comparing and thread-local integer ...fly a rocket code here... realtime_depth--; }[[nonblocking]] ● Every [[nonblocking]] function has an additional increment and decrement of an integer ● May interfere nblocking]] ● Every [[nonblocking]] function has an additional increment and decrement of an integer ● May interfere with inlining optimizations ● A few additional function calls inserted between
    0 码力 | 153 页 | 1.38 MB | 6 月前
    3
  • pdf文档 simd: How to Express Inherent Parallelism Efficiently Via Data-Parallel Types

    developers to design scalable and portable parallelization. • Target-dependent width • Visible “conversion” between scalars and simd objects (loads & stores vs. gathers & scatters) • Conditional assignment Programming Models Outlook Summary More interoperability • Conversion to/from std::array, std::span, contiguous ranges? • Mask conversion to/from std::bitset. • Initializer list constructor for simd 3 mov DWORD PTR [rdi], eax • src/dst: array of integers • throughput: 0.5/1/1 cycles (Intel) • integer multiplications: 1 1 vmovdqu32 zmm0, ZMMWORD PTR [rdi] 2 vpmulld zmm0, zmm0, zmm0 3 vmovdqu32
    0 码力 | 160 页 | 8.82 MB | 6 月前
    3
  • pdf文档 Is std::mdspan a Zero-overhead Abstraction? - Oleksandr Bakirov - CppCon

    calling convention “The x64 ABI uses a four-register fast-call calling convention by default. … Integer arguments are passed in registers RCX, RDX, R8, and R9.” “Any argument that doesn't fit in 8 bytes calling convention “The x64 ABI uses a four-register fast-call calling convention by default. … Integer arguments are passed in registers RCX, RDX, R8, and R9.” “Any argument that doesn't fit in 8 bytes ), 13 std::integral_constant{}}; 14 } 15 }; 71RGB to Grayscale conversion 72Color spaces 1 struct RGB {}; 2 3 auto channelCount(RGB) { 4 return std::integral_constant
    0 码力 | 75 页 | 1.04 MB | 6 月前
    3
  • pdf文档 Writing Python Bindings for C++ Libraries: Easy-to-use Performance

    world (not really)Hello, world Different implementations of a simple increment function (takes an integer as argument, increments it and returns) ● C++ ● Python ● C++ with pybind11 ● C++ with boost::python be int / float / std::vector, ... ○ Most libraries support all these common types’ conversion from PyObject* and back ○ Should be optimal to let the library do the cast for you ● Can be ○ Even more optimal if your code just populates the python data structure instead of doing a conversion ● What about larger objects? ○ Large vectors, matrices? ○ Python libraries aren’t written to
    0 码力 | 118 页 | 2.18 MB | 6 月前
    3
  • pdf文档 Noexcept: Enabling Testing of Contract Checks

    preconditions: • Example: unsigned integer addition • Example: vector::size() • A function has a narrow contract if it has preconditions: • Example: signed integer addition (precondition: a + b will presentation, this was slide 1 for Timur's video. Please forgive formatting glitches caused by conversion and merging.Copyright (c) Timur Doumler | @timur_audio | https://timur.audio 18 Copyright
    0 码力 | 90 页 | 1.38 MB | 6 月前
    3
共 183 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 19
前往
页
相关搜索词
NewDragonintheDenFastConversionFromFloatingPointNumbersBacktoBasicsFunctionCallResolutionBuildingSafeandReliableSurgicalRoboticswithC++ModernTutorial11141720OnFlyDeliveringsafeLLVMRealtimeSafetyRevolutionToolsforMissionCriticalSystemssimdHowExpressInherentParallelismEfficientlyViaDataParallelTypesIsstdmdspanZerooverheadAbstractionOleksandrBakirovCppConWritingPythonBindingsLibrariesEasyusePerformanceNoexceptEnablingTestingofContractChecks
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩