You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# NB! dummy column is needed to ensure that the INSERT is done only during first call and not on subsequent calls. There must be only one row in the table.
278
279
cmd="""
279
280
CREATE TABLE IF NOT EXISTS gpu_counter_table
280
-
(gpu_counter INTEGER);
281
-
INSERT OR IGNORE INTO gpu_counter_table (gpu_counter) VALUES (0);
281
+
(dummy INTEGER UNIQUE, gpu_counter INTEGER);
282
+
INSERT OR IGNORE INTO gpu_counter_table (dummy, gpu_counter) VALUES (0, 0);
0 commit comments