SASS Instructions' history, extracted from CUDA Binary Utilities - Instruction Set Reference and with links to a reverse-engineered ISA when available:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import json | |
def renumber_nb(nb_file_name): | |
assert nb_file_name.endswith('.ipynb') | |
base = '.'.join(nb_file_name.split('.')[:-1]) | |
i = 1 | |
j = json.load(open(nb_file_name, 'r')) |