warp

warp

用于高性能模拟和图形计算的Python框架

Warp是NVIDIA开发的Python框架,用于高性能模拟和图形计算。它将Python函数编译为可在CPU或GPU上运行的高效内核代码。Warp为空间计算提供丰富原语,便于开发物理模拟、感知、机器人和几何处理程序。其可微分内核可用于机器学习。Warp支持多种操作系统和CPU架构,适用于科研和工业应用。

NVIDIA WarpPython框架高性能模拟图形编程GPU加速Github开源项目

PyPI 版本 GitHub 提交活动 下载量 codecov GitHub - CI Discord

NVIDIA Warp

Warp 是一个用于编写高性能模拟和图形代码的 Python 框架。Warp 将普通的 Python 函数进行即时编译,转换为可在 CPU 或 GPU 上运行的高效内核代码。

Warp 专为空间计算而设计,它提供了一套丰富的原语,使得编写物理模拟、感知、机器人和几何处理程序变得简单。此外,Warp 内核是可微分的,可以作为机器学习管道的一部分与 PyTorch 和 JAX 等框架一起使用。

请参阅项目文档以获取 API 和语言参考,以及 CHANGELOG.md 了解发布历史。

<div align="center"> <img src="https://yellow-cdn.veclightyear.com/ab5030c0/9af0e1a1-9156-4955-b43f-f43cd89149e4.jpg"> <p><i>使用 Warp 计算的部分物理模拟示例</i></p> </div>

安装

推荐使用 Python 3.9 或更高版本。Warp 可以在 Windows、Linux 和 macOS 的 x86-64 和 ARMv8 CPU 上运行。GPU 支持需要 CUDA 兼容的 NVIDIA GPU 和驱动程序(最低要求为 GeForce GTX 9xx)。

安装 Warp 最简单的方法是从 PyPI 安装:

pip install warp-lang

您也可以使用 pip install warp-lang[extras] 来安装运行示例和 USD 相关功能所需的额外依赖项。

PyPI 上托管的二进制文件目前是使用 CUDA 12 运行时构建的,因此需要最低版本的 CUDA 驱动程序为 525.60.13(Linux x86-64)或 528.33(Windows x86-64)。

如果您需要在安装了较旧 CUDA 驱动程序的系统上使用 GPU 支持,可以从源代码构建 Warp,或从 GitHub Releases 页面安装使用 CUDA 11.8 运行时构建的 wheel 文件。复制适当的 wheel 文件(warp-lang-{ver}+cu12-py3-none-{platform}.whl)的 URL,并将其传递给 pip install 命令,例如:

平台安装命令
Linux aarch64pip install https://github.com/NVIDIA/warp/releases/download/v1.3.1/warp_lang-1.3.1+cu11-py3-none-manylinux2014_aarch64.whl
Linux x86-64pip install https://github.com/NVIDIA/warp/releases/download/v1.3.1/warp_lang-1.3.1+cu11-py3-none-manylinux2014_x86_64.whl
Windows x86-64pip install https://github.com/NVIDIA/warp/releases/download/v1.3.1/warp_lang-1.3.1+cu11-py3-none-win_amd64.whl

可能需要使用 --force-reinstall 选项来覆盖之前的安装。

CUDA 要求

  • 使用 CUDA Toolkit 11.x 构建的 Warp 包需要 NVIDIA 驱动程序 470 或更高版本。
  • 使用 CUDA Toolkit 12.x 构建的 Warp 包需要 NVIDIA 驱动程序 525 或更高版本。

这适用于在 PyPI 和 GitHub 上分发的预构建包,以及从源代码构建 Warp 时。

请注意,使用 --quick 标志构建 Warp 会改变驱动程序要求。快速构建会跳过 CUDA 向后兼容性,因此最低要求的驱动程序由 CUDA Toolkit 版本决定。请参考最新的 CUDA Toolkit 发行说明,以找到不同 CUDA Toolkit 版本的最低要求驱动程序(例如,CUDA Toolkit 12.5 的这个表格)。

Warp 在初始化过程中会检查已安装的驱动程序,如果驱动程序不合适,将报告警告,例如:

Warp UserWarning: CUDA 驱动程序版本不足。 最低要求的 CUDA 驱动程序版本是 12.0,但已安装的 CUDA 驱动程序版本是 11.8。 请访问 https://github.com/NVIDIA/warp/blob/main/README.md#installing 获取指导。

这将导致 CUDA 设备不可用,但仍可以使用 CPU。

要解决这个问题,有以下几个选项:

  • 更新驱动程序。
  • 安装兼容的预构建 Warp 包。
  • 使用与已安装驱动程序兼容的 CUDA Toolkit 从源代码构建 Warp。

入门

下面是一个计算随机 3D 向量长度的示例程序:

import warp as wp import numpy as np num_points = 1024 @wp.kernel def length(points: wp.array(dtype=wp.vec3), lengths: wp.array(dtype=float)): # 线程索引 tid = wp.tid() # 计算每个点到原点的距离 lengths[tid] = wp.length(points[tid]) # 分配一个 3D 点数组 points = wp.array(np.random.rand(num_points, 3), dtype=wp.vec3) lengths = wp.zeros(num_points, dtype=float) # 启动内核 wp.launch(kernel=length, dim=len(points), inputs=[points, lengths]) print(lengths)

运行示例

warp/examples 目录下包含了多个子目录,其中包含了一些脚本,展示了如何使用 Warp API 实现各种模拟方法。大多数示例会在当前工作目录中生成包含时间采样动画的 USD 文件。在运行示例之前,用户应确保已安装 usd-corematplotlibpyglet 包,可以使用以下命令安装:

pip install warp-lang[extras]

这些依赖项也可以手动安装:

pip install usd-core matplotlib pyglet

可以通过命令行运行示例,如下所示:

python -m warp.examples.<example_subdir>.<example>

要浏览示例源代码,可以像这样打开文件所在的目录:

python -m warp.examples.browse

大多数示例可以在 CPU 或 CUDA 兼容设备上运行,但有少数示例需要 CUDA 兼容设备。这些示例在脚本顶部有标记。

USD 文件可以在 NVIDIA Omniverse、Pixar 的 UsdView 和 Blender 中查看或渲染。请注意,不建议在 macOS 上使用 Preview,因为它对时间采样动画的支持有限。

可以通过命令行运行内置单元测试,如下所示:

python -m warp.tests

warp/examples/core

<table> <tbody> <tr> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_dem.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/d8ee5ba2-0b53-497b-80fa-5dd7d27ba67e.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_fluid.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/bdcead1d-751e-478a-850a-598c0392f91b.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_graph_capture.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/b2050b1a-09c4-4b84-bda6-337f044d4637.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_marching_cubes.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/3b434a02-0119-4e15-a074-bbf4eddc58bc.png"></a></td> </tr> <tr> <td align="center">离散元方法</td> <td align="center">流体</td> <td align="center">图捕获</td> <td align="center">移动立方体</td> </tr> <tr> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_mesh.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/bbe3c983-3a33-469f-9a2d-dc4db6243174.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_nvdb.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/3bc8bebc-1ebf-46dc-b8a1-03ba75d85e23.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_raycast.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/12ff45d9-c5c7-4d30-a133-f157b75a0da3.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_raymarch.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/3a8263ed-9a7e-4d58-9a92-74e505b823cc.png"></a></td> </tr> <tr> <td align="center">网格</td> <td align="center">NVDB</td> <td align="center">光线投射</td> <td align="center">光线行进</td> </tr> <tr> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_sph.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/4e5374e9-ab4b-449c-84e4-e22cb11eb970.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_torch.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/b04efc27-fb3e-4e8c-a56c-14724cc2170b.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_wave.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/89863111-4216-4b56-9275-3af008a6227e.png"></a></td> <td></td> </tr> <tr> <td align="center">光滑粒子流体动力学</td> <td align="center">PyTorch</td> <td align="center">波</td> <td align="center"></td> </tr> </tbody> </table>

warp/examples/fem

<table> <tbody> <tr> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_diffusion_3d.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/882e0bdd-0d62-4efd-817e-28f596bc9038.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_mixed_elasticity.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/39d238ca-1c9f-4c8e-a280-a714b61bdc4b.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_apic_fluid.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/f3a0d934-b013-442e-b175-361ed6a1665f.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_streamlines.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/711114aa-d7fe-4081-827a-3a544f869bdd.png"></a></td> </tr> <tr> <td align="center">三维扩散</td> <td align="center">混合弹性</td> <td align="center">APIC流体</td> <td align="center">流线</td> </tr> <tr> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_convection_diffusion.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/8c906e8b-e76f-4752-a463-12f92e191f1a.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_navier_stokes.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/1fe566ec-3e5f-4ebb-b3c7-e27b09dd9588.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_burgers.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/c84ebb84-1bca-4a3b-bf4d-44e46e73422e.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_magnetostatics.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/4458399d-9d82-4bc1-9a05-aabc705b081c.png"></a></td> </tr> <tr> <td align="center">对流扩散</td> <td align="center">纳维-斯托克斯方程</td> <td align="center">伯格斯方程</td> <td align="center">磁静力学</td> </tr> </tbody> </table>

warp/examples/optim

<table> <tbody> <tr> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_bounce.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/1a0ed0d3-f99d-4c64-8727-eb3031de5dde.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_cloth_throw.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/58de2ecd-adaf-4ed9-bd93-ca051c92a608.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_diffray.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/da5d7900-91a0-4d42-b9b4-3c0d678aeff4.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_drone.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/32561d3c-f94f-4400-b675-94b2f106c8da.png"></a></td> </tr> <tr> <td align="center">弹跳</td> <td align="center">布料投掷</td> <td align="center">差分光线追踪</td> <td align="center">无人机</td> </tr> <tr> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_inverse_kinematics.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/f7bf56e6-555b-4089-872c-52dda8051605.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_spring_cage.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/d20e3404-a2fe-43ff-bd20-214c7a582b8c.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_trajectory.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/4c693de5-7d77-424b-b90c-98c756650a4f.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_walker.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/e164dd8a-478a-4ff9-8adb-8e8dc6243ac4.png"></a></td> </tr> <tr> <td align="center">逆向运动学</td> <td align="center">弹簧笼</td> <td align="center">轨迹</td> <td align="center">步行机</td> </tr> </tbody> </table>

warp/examples/sim

<table> <tbody> <tr> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_cartpole.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/381a2a79-26e9-435a-80a2-4be1c27614f4.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_cloth.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/8a0721b4-dc1f-45b1-8d5a-f03a00591fd5.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_granular.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/b19c6a33-d804-4a66-aa0e-82bb1b20385b.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_granular_collision_sdf.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/626844c4-6920-47eb-aa66-4ae391db553a.png"></a></td> </tr> <tr> <td align="center">倒立摆</td> <td align="center">布料</td> <td align="center">颗粒</td> <td align="center">颗粒碰撞SDF</td> </tr> <tr> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_jacobian_ik.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/60979b71-0553-4ac1-adc1-d363c51ce550.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_quadruped.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/ac363370-e96f-4675-9491-de91a7d8eb8a.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_chain.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/d134583e-e6b7-4eb3-bb89-08ba8ffc0bd3.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_contact.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/4ca2c9aa-f6b3-4080-8c1b-03a55baaf70c.png"></a></td> </tr> <tr> <td align="center">雅可比逆向运动学</td> <td align="center">四足机器人</td> <td align="center">刚体链</td> <td align="center">刚体接触</td> </tr> <tr> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_force.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/193394f0-237b-42d0-8be5-b845093cbe56.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_gyroscopic.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/acd580cd-dc58-4f2d-9446-a0b0a74c266c.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_soft_contact.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/16bc122a-91cb-4c3d-9e9d-77494400bca6.png"></a></td> <td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_soft_body.py"><img src="https://yellow-cdn.veclightyear.com/ab5030c0/58893351-0108-4726-be36-0f73fd88e793.png"></a></td> </tr> <tr> <td align="center">刚体力</td> <td align="center">刚体陀螺效应</td> <td align="center">刚体软体接触</td> <td align="center">软体</td> </tr> </tbody> </table>

构建

对于想要自行构建库的开发者,需要以下工具:

  • Microsoft Visual Studio 2019或更高版本(Windows)
  • GCC 9.4或更高版本(Linux)
  • CUDA Toolkit 11.5或更高版本
  • 安装Git LFS

克隆仓库后,用户应运行:

python build_lib.py

成功后,脚本将在warp/bin/目录下输出特定平台的二进制文件。 构建脚本将在默认安装路径中查找CUDA Toolkit。 可以通过设置CUDA_PATH环境变量来覆盖此路径。或者, 可以通过--cuda_path="..."将CUDA Toolkit的路径传递给构建命令。构建完成后,应使用以下命令安装Warp包:

pip install -e .

这确保了对库的后续修改将反映在Python包中。

了解更多

请参阅以下资源以获取有关Warp的更多背景信息:

Warp中的底层技术已在NVIDIA的多个研究项目中使用,包括以下出版物:

  • 基于并行可微分仿真的加速策略学习 - Xu, J., Makoviychuk, V., Narang, Y., Ramos, F., Matusik, W., Garg, A., & Macklin, M. (2022)
  • DiSECt:用于机器人切割的可微分仿真器 - Heiden, E., Macklin, M., Narang, Y., Fox, D., Garg, A., & Ramos, F (2021)
  • gradSim:用于系统识别和视觉运动控制的可微分仿真 - Murthy, J. Krishna, Miles Macklin, Florian Golemo, Vikram Voleti, Linda Petrini, Martin Weiss, Breandan Considine 等 (2021)

常见问题

请参阅Warp文档中的常见问题

支持

问题、疑问和功能请求可以在GitHub Issues上提出。

Warp团队也会关注公共Omniverse Discord服务器上的**#warp**频道,欢迎与我们交流!

版本控制

版本格式为X.Y.Z,类似于Python本身

  • X的增加保留用于项目的重大改造,可能导致不兼容性(或达到1.0里程碑)。
  • Y的增加用于具有新功能集的常规发布。
  • Z的增加用于错误修复。原则上不会有新功能。如果为0或不相关,可以省略。

这类似于语义化版本控制,但对向后兼容性的要求不那么严格。 与Python一样,如果有充分的文档说明并逐步引入,次要版本之间可能存在一些破坏性变更。

请注意,在0.11.0版本之前,并未严格遵守此模式。

许可证

Warp根据NVIDIA软件许可证提供,请参阅LICENSE.md获取完整的许可证文本。

贡献

欢迎社区成员提供贡献和拉取请求,这些贡献和请求将根据LICENSE.md反馈部分描述的条款接受。 CONTRIBUTING.md提供了有关如何为Warp开启拉取请求的其他信息。

引用

如果您在研究中使用Warp,请使用以下引用:

@misc{warp2022, title= {Warp: 用于GPU仿真和图形的高性能Python框架}, author = {Miles Macklin}, month = {3月}, year = {2022}, note= {NVIDIA GPU技术大会(GTC)}, howpublished = {\url{https://github.com/nvidia/warp}} }

编辑推荐精选

讯飞智文

讯飞智文

一键生成PPT和Word,让学习生活更轻松

讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。

AI办公办公工具AI工具讯飞智文AI在线生成PPTAI撰写助手多语种文档生成AI自动配图热门
讯飞星火

讯飞星火

深度推理能力全新升级,全面对标OpenAI o1

科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。

热门AI开发模型训练AI工具讯飞星火大模型智能问答内容创作多语种支持智慧生活
Spark-TTS

Spark-TTS

一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型

Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。

Trae

Trae

字节跳动发布的AI编程神器IDE

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

AI工具TraeAI IDE协作生产力转型热门
咔片PPT

咔片PPT

AI助力,做PPT更简单!

咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。

讯飞绘文

讯飞绘文

选题、配图、成文,一站式创作,让内容运营更高效

讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。

热门AI辅助写作AI工具讯飞绘文内容运营AI创作个性化文章多平台分发AI助手
材料星

材料星

专业的AI公文写作平台,公文写作神器

AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。

openai-agents-python

openai-agents-python

OpenAI Agents SDK,助力开发者便捷使用 OpenAI 相关功能。

openai-agents-python 是 OpenAI 推出的一款强大 Python SDK,它为开发者提供了与 OpenAI 模型交互的高效工具,支持工具调用、结果处理、追踪等功能,涵盖多种应用场景,如研究助手、财务研究等,能显著提升开发效率,让开发者更轻松地利用 OpenAI 的技术优势。

Hunyuan3D-2

Hunyuan3D-2

高分辨率纹理 3D 资产生成

Hunyuan3D-2 是腾讯开发的用于 3D 资产生成的强大工具,支持从文本描述、单张图片或多视角图片生成 3D 模型,具备快速形状生成能力,可生成带纹理的高质量 3D 模型,适用于多个领域,为 3D 创作提供了高效解决方案。

3FS

3FS

一个具备存储、管理和客户端操作等多种功能的分布式文件系统相关项目。

3FS 是一个功能强大的分布式文件系统项目,涵盖了存储引擎、元数据管理、客户端工具等多个模块。它支持多种文件操作,如创建文件和目录、设置布局等,同时具备高效的事件循环、节点选择和协程池管理等特性。适用于需要大规模数据存储和管理的场景,能够提高系统的性能和可靠性,是分布式存储领域的优质解决方案。

下拉加载更多