This file contains 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
--- ucx_info_b 2019-08-08 11:01:32.820637475 -0700 | |
+++ ucx_from_source_info_b 2019-08-08 11:02:15.976537113 -0700 | |
@@ -8,6 +8,7 @@ | |
#define HAVE_CUDA 1 | |
#define HAVE_CUDA_H 1 | |
#define HAVE_CUDA_RUNTIME_H 1 | |
+#define HAVE_DC_EXP 1 | |
#define HAVE_DECL_ASPRINTF 1 | |
#define HAVE_DECL_BASENAME 1 | |
#define HAVE_DECL_CPU_ISSET 1 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
from pickle import Pickler, load | |
try: | |
from pickle import PickleBuffer | |
except ImportError: | |
PickleBuffer = None | |
import copyreg | |
import os | |
import numpy as np | |
import time |
This file contains 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 as np | |
import matplotlib.pyplot as plt | |
import pandas as pd | |
import os.path | |
import re | |
from osgeo import gdal | |
from osgeo import gdal_array | |
from osgeo import osr |
This file contains 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 json | |
import glob | |
import os | |
from os.path import join, basename | |
# install this with "conda install -c conda-forge python-graphviz" | |
import graphviz as gv | |
# path to your conda environment | |
path = os.environ.get('CONDA_PREFIX') | |
if path is None: |
This file contains 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 | |
""" | |
Inspect MACOSX deployment targets of conda packages | |
Uses `otool -l` and checks for LC_VERSION_MIN_MACOSX command to verify that dylibs target the right version of OS X | |
BY: Min RK | |
LICENSE: CC0, Public Domain | |
""" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 python3 | |
""" Find conda packages which use a binary prefix. """ | |
import argparse | |
import bz2 | |
import json | |
import os | |
import tarfile | |
import urllib.request |