sdc icon indicating copy to clipboard operation
sdc copied to clipboard

Numba extension for compiling Pandas data frames, Intel® Scalable Dataframe Compiler

Results 57 sdc issues
Sort by recently updated
recently updated
newest added

This can be an additional part for the HPAT documentation on https://intellabs.github.io/hpat/_build/html/index.html. I'll try to make some starting point for that part of documentation while trying to fix #60.

To avoid error messages quality regression over time, at least minimal tests coverage should be added to make sure errors are still reported as they should be reported. See also...

Given this code: ```python import hpat import pandas as pd import numpy as np @hpat.jit def weird(): df = pd.DataFrame({'A': np.ones(10), 'B': np.arange(10)}) return df.columns print(weird()) ``` Execution leads to...

We need to implement combine, filter, where, to_parquet, to_csv, query, mode, TimeDelta (several functions) and TimeDeltaIndex

Running `mpiexec -n 4 python -m unittest` on master fails with: ``` =================================================================================== = BAD TERMINATION OF ONE OF YOUR APPLICATION PROCESSES = PID 17975 RUNNING AT antsatel03 = EXIT...

Given these series: ```python S1 = pandas.Series([1.0, -1.5]), S2 = pandas.Series([complex(-4.5, 1.0), complex(3.0, 1.5)]) ``` The hpat and "normal" functions return different results: ```python # corr hpat_func(S1, S2) # =>...

#calc_pi.py import hpat import numpy as np import time @hpat.jit def calc_pi(n): t1 = time.time() x = 2 * np.random.ranf(n) - 1 y = 2 * np.random.ranf(n) - 1 pi...

Hello, I'm really interested in using HPAT in my project. I have a HPC cluster with 12 worker nodes. Where can I find an example to configure HPAT in order...