Hello! Welcome to the Dask sprints for SciPy 2020.
Here's a few links for getting started contributing:
- Our contributor guide is here. This should cover
| import vaex | |
| import numpy as np | |
| import dask.dataframe as dd | |
| import dask | |
| import dask.distributed | |
| import json | |
| import os | |
| import time | |
| import argparse | |
| import multiprocessing |
| function github-remote-add () { | |
| case $1 in | |
| ""|--help|-h) | |
| echo "Usage: github-remote-add USERNAME" | |
| return 1 | |
| ;; | |
| esac | |
| local root=`git rev-parse --show-toplevel`; | |
| if [ $? -ne 0 ]; then | |
| echo "Not in a git directory" |
| FROM ubuntu:xenial | |
| RUN apt-get update && \ | |
| apt-get install -y -q curl bzip2 git && \ | |
| rm -rf /var/lib/apt/lists/* | |
| # Install CDH5 in a single node: Pseudo Distributed | |
| # Docs: https://www.cloudera.com/documentation/enterprise/5-6-x/topics/cdh_qs_yarn_pseudo.html | |
| ADD cloudera.pref /etc/apt/preferences.d/cloudera.pref | |
| RUN curl -s https://archive.cloudera.com/cdh5/ubuntu/xenial/amd64/cdh/archive.key | apt-key add - && \ |
| import ctypes | |
| import numpy as np | |
| from numba.extending import get_cython_function_address, overload, intrinsic | |
| from numba.errors import TypingError | |
| from numba import cgutils, types | |
| import scipy.special | |
| import beeline | |
| from starlette.exceptions import HTTPException | |
| from starlette.datastructures import Headers | |
| class HoneycombMiddleware: | |
| def __init__(self, app): | |
| self.app = app |
| import pickle | |
| import struct | |
| class Memo(object): | |
| def __init__(self): | |
| self.kv = {} | |
| def put(self, item): | |
| ind = self.kv[id(item)] = len(self.kv) |