sudo dpkg -P $(dpkg -l | grep nvidia-driver | awk '{print $2}')
sudo apt autoremove
sudo lshw -C display
NVIDIA Apmere cards including 3070, 3080 and 3090 dos not work with CUDA 10.
import Foundation | |
import AVFoundation | |
import UIKit | |
private let userDefaultsCachePathKey = "video.cache.path" | |
private let userDefaultsFileSizeKey = "video.cache.size" | |
private let userDefaultsLastAccessedDictionaryKey = "video.cache.last.accessed.key" // Key: last accessed, value: path | |
private let maxConcurrentDownloads = 2 |
# -*- coding: utf-8 -*- | |
"""DALL-E Pytorch - COCO dataset | |
Automatically generated by Colaboratory. | |
Original file is located at | |
https://colab.research.google.com/drive/1KxG1iGBoKt2fLVH7uXG_vhvll2OlFkey | |
**Install necessary dependencies** | |
""" |
# from https://github.com/rolux/stylegan2encoder | |
import argparse | |
import os | |
import shutil | |
import numpy as np | |
import dnnlib | |
import dnnlib.tflib as tflib | |
import pretrained_networks |
# Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. | |
# | |
# NVIDIA CORPORATION and its licensors retain all intellectual property | |
# and proprietary rights in and to this software, related documentation | |
# and any modifications thereto. Any use, reproduction, disclosure or | |
# distribution of this software and related documentation without an express | |
# license agreement from NVIDIA CORPORATION is strictly prohibited. | |
ARG BASE_IMAGE=nvcr.io/nvidia/tensorflow:20.12-tf1-py3 | |
FROM $BASE_IMAGE |
import argparse | |
import json | |
import subprocess | |
import urllib.error | |
import urllib.parse | |
import urllib.request | |
def find_forks(remote): | |
""" |
/** | |
* Fancy ID generator that creates 20-character string identifiers with the following properties: | |
* | |
* 1. They're based on timestamp so that they sort *after* any existing ids. | |
* 2. They contain 72-bits of random data after the timestamp so that IDs won't collide with other clients' IDs. | |
* 3. They sort *lexicographically* (so the timestamp is converted to characters that will sort properly). | |
* 4. They're monotonically increasing. Even if you generate more than one in the same timestamp, the | |
* latter ones will sort after the former ones. We do this by using the previous random bits | |
* but "incrementing" them by 1 (only in the case of a timestamp collision). | |
*/ |
// original: https://gist.github.com/mikelehen/3596a30bd69384624c11 | |
class PushIDGenerator { | |
private init() { } | |
static private let PUSH_CHARS = Array("-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz") | |
static private var lastPushTime: UInt64 = 0 | |
static private var lastRandChars = Array<Int>(repeating: 0, count: 12) | |
static func generate() -> String { |