CudaArtifact
3,817 rows where license_name = 1438
This data as json, CSV (advanced)
pname >30
- cuda_cuxxfilt 142
- libcusolver 142
- cuda_nvtx 142
- cuda_cccl 142
- libcusparse 142
- cuda_cudart 142
- cuda_nvml_dev 142
- cuda_nvrtc 142
- cuda_sanitizer_api 142
- libnpp 142
- cuda_nvcc 142
- libcublas 142
- cuda_cuobjdump 142
- cuda_nvdisasm 142
- libcurand 142
- cuda_nvprune 142
- libcufft 142
- cuda_documentation 142
- cuda_cupti 142
- libnvjpeg 137
- cuda_gdb 109
- cuda_nvprof 101
- cuda_profiler_api 98
- libnvjitlink 93
- cuda_nvvp 90
- libcufile 69
- nvidia_fs 69
- cuda_demo_suite 66
- cuda_nsight 57
- libnvfatbin 46
- …
platform 5
- linux-x86_64 985
- windows-x86_64 895
- linux-sbsa 796
- linux-ppc64le 619
- linux-aarch64 522
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "CudaArtifact" (
"manifest" INTEGER NOT NULL,
"name" INTEGER,
"pname" INTEGER,
"license_name" INTEGER,
"license_path" INTEGER,
"version" INTEGER NOT NULL,
"compat_tag" INTEGER,
"sha256" INTEGER,
"md5" INTEGER,
"platform" INTEGER,
"relative_path" INTEGER,
"n_bytes" INTEGER,
PRIMARY KEY("sha256","manifest"),
FOREIGN KEY("compat_tag") REFERENCES "Str"("id"),
FOREIGN KEY("license_name") REFERENCES "Str"("id"),
FOREIGN KEY("license_path") REFERENCES "Str"("id"),
FOREIGN KEY("manifest") REFERENCES "CudaManifest"("id"),
FOREIGN KEY("manifest") REFERENCES "Hash"("id"),
FOREIGN KEY("md5") REFERENCES "Hash"("id"),
FOREIGN KEY("name") REFERENCES "Str"("id"),
FOREIGN KEY("platform") REFERENCES "Str"("id"),
FOREIGN KEY("pname") REFERENCES "Str"("id"),
FOREIGN KEY("relative_path") REFERENCES "Str"("id"),
FOREIGN KEY("sha256") REFERENCES "Hash"("id"),
FOREIGN KEY("version") REFERENCES "Str"("id")
) STRICT;
CREATE UNIQUE INDEX CudaArtifactIdx
ON CudaArtifact(pname, platform, version, compat_tag, name, manifest);