CudaComponent
4,215 rows
This data as json, CSV (advanced)
Suggested facets: license_name, platform
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE CudaComponent(
manifest INTEGER,
name INTEGER, /* E.g. "cuda_nvcc" */
license_name INTEGER, /* E.g. "CUDA Toolkit" */
license_path INTEGER, /* E.g. "cuda_cccl/LICENSE.txt" */
version INTEGER, /* E.g. "12.8.90" */
sha256 INTEGER,
md5 INTEGER,
platform INTEGER, /* E.g. "linux-x86_64" */
/* E.g. "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-12.8.90-archive.tar.xz" */
relative_path INTEGER,
n_bytes INTEGER, /* May be a string in the JSON */
PRIMARY KEY(manifest, name, platform),
FOREIGN KEY(manifest) REFERENCES CudaManifest(id),
FOREIGN KEY(name) REFERENCES Str(id),
FOREIGN KEY(license_name) REFERENCES Str(id),
FOREIGN KEY(license_path) REFERENCES Str(id),
FOREIGN KEY(version) REFERENCES Str(id),
FOREIGN KEY(sha256) REFERENCES Hash(id),
FOREIGN KEY(md5) REFERENCES Hash(id),
FOREIGN KEY(platform) REFERENCES Str(id),
FOREIGN KEY(relative_path) REFERENCES Str(id)
);