Spaces:
Build error
Build error
File size: 408 Bytes
7b2e8fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import streamlit as st
st.write("# URLs for GPU RTX Nvidia 3070 Nsight pages")
urls = {
"Nsight Compute 2023.1.0": "https://en.wikipedia.org/wiki/NVIDIA_Nsight_Compute",
"Nsight Systems 2023.1.2": "https://en.wikipedia.org/wiki/NVIDIA_Nsight_Systems",
"Nsight Monitor": "https://en.wikipedia.org/wiki/NVIDIA_Nsight_Monitor",
}
for name, url in urls.items():
st.write(f"- [{name}]({url})")
|