sources
Data license: CC-BY
1 row where datasetId = 1854 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
13165 | TOP500 Supercomputer Database (2023) | { "link": "https://www.top500.org/statistics/perfdevel/", "retrievedDate": "2023-02-01", "additionalInfo": "Data on supercomputer power is sourced from the TOP500 database, which tracks and reports the 500 largest supercomputers bi-annually. \n\nSupercomputer power is measured in Floating-Point Operations per Second (FLOPS), a measure of calculations per second for floating-point operations. Floating-point operations are needed for very large or very small numbers, or computations requiring an extensive dynamic range. Therefore, it is a more accurate measurement than instructions per second.", "dataPublishedBy": "TOP500 Supercomputer Database (2023)", "dataPublisherSource": null } |
2017-12-01 15:29:28 | 2023-03-03 12:31:03 | Supercomputer power (FLOPS) – TOP500 Database 1854 | Data on supercomputer power is sourced from the TOP500 database, which tracks and reports the 500 largest supercomputers bi-annually. Supercomputer power is measured in Floating-Point Operations per Second (FLOPS), a measure of calculations per second for floating-point operations. Floating-point operations are needed for very large or very small numbers, or computations requiring an extensive dynamic range. Therefore, it is a more accurate measurement than instructions per second. | https://www.top500.org/statistics/perfdevel/ | TOP500 Supercomputer Database (2023) |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");