{ "cells": [ { "cell_type": "code", "execution_count": 2, "id": "1966c491", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "PyTorch 版本: 2.9.1+cu128\n", "CUDA 版本: 12.8\n", "CUDA 是否可用: True\n", "GPU 名称: NVIDIA GeForce RTX 5060\n" ] } ], "source": [ "import torch\n", "\n", "print(\"PyTorch 版本:\", torch.__version__)\n", "print(\"CUDA 版本:\", torch.version.cuda)\n", "print(\"CUDA 是否可用:\", torch.cuda.is_available())\n", "if torch.cuda.is_available():\n", " print(\"GPU 名称:\", torch.cuda.get_device_name(0))\n", "else:\n", " print(\"GPU 不可用\")" ] }, { "cell_type": "code", "execution_count": null, "id": "2ca56e05", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "e914943b", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "530510ae", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "e6e0b14d", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "d45b951a", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "85b1ee7f", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "tslib", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.14" } }, "nbformat": 4, "nbformat_minor": 5 }