智算多多联系我们


关注我们

公众号

视频号
隐私协议用户协议
◎ 2025 北京智算多多科技有限公司版权所有京ICP备 2025150592号-1
支持大模型推理、视频生成、训练、微调、二次开发,无环境冲突。
支持从模型训练到推理、从计算机视觉到自然语言处理的全场景需求。
生产级驱动(550.90.07)和经过验证的软件组合,避免版本冲突。
从镜像市场获取 PyTorch 2.8 镜像,无需手动安装任何驱动或框架,省去了传统方式数小时的配置时间。
运行以下命令验证环境是否正常:
python -c "import torch; print('PyTorch版本:', torch.__version__); print('CUDA可用:', torch.cuda.is_available()); print('设备数量:', torch.cuda.device_count()); gpu = torch.cuda.get_device_properties(0); print(f'设备信息: {gpu.name} | 显存: {gpu.total_memory/1e9:.1f}GB')"
设备信息:NVIDIA GeForce RTX 4090D | 显存:24.0GB
a = torch.randn(size, size, device='cuda', dtype=dtype)
b = torch.randn(size, size, device='cuda', dtype=dtype)
_ = a @ b # 正式测试
start = torch.cuda.Event(enable_timing=True)