See files.
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
| # %% | |
| import numpy | |
| import time | |
| verbose = False | |
| class context: | |
| def __init__(self, kind=None): | |
| self.kind = kind | |
| def __str__(self): | |
| if verbose: | |
| return f"<context kind={self.kind}>\n</context>\n" |
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
| name = 'PETSc' | |
| version = '3.6.2' | |
| pysuffix = '-Python-%(pyver)s' | |
| versionsuffix = pysuffix | |
| homepage = 'http://www.mcs.anl.gov/petsc' | |
| description = """ | |
| PETSc, pronounced PET-see (the S is silent), is a suite of data structures | |
| and routines for the scalable (parallel) solution of scientific applications |