• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

jakirkham / dask-distance
100%
master: 100%

Build:
Build:
LAST BUILD BRANCH: fix_license_typo
DEFAULT BRANCH: master
Repo Added 24 Sep 2017 03:15AM UTC
Files 5
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH opt_gen_pdist_diag_recrsv
branch: opt_gen_pdist_diag_recrsv
CHANGE BRANCH
x
Reset
  • opt_gen_pdist_diag_recrsv
  • add__atleast_2d
  • add__bool_dist
  • add__concatenate
  • add__pycompat
  • add_accumulate
  • add_atop_ravel
  • add_bool_dist
  • add_bool_dist_title
  • add_braycurtis
  • add_canberra
  • add_cdist
  • add_chebyshev
  • add_cityblock
  • add_compat
  • add_correlation
  • add_cosine
  • add_dice
  • add_euclidean
  • add_hamming
  • add_izip
  • add_jaccard
  • add_kulsinski
  • add_mahalanobis
  • add_minkowski
  • add_pdist
  • add_rogerstanimoto
  • add_russellrao
  • add_seuclidean
  • add_sokalmichener
  • add_sokalsneath
  • add_sqeuclidean
  • add_squareform
  • add_wminkowski
  • add_yule
  • adj_cdist_asarray
  • adj_hamming
  • adj_hamming_sum
  • broadcast_uv_wrapper
  • ci_run_flake8
  • cmp_many_bool_arrays
  • comb_bool_cmp
  • cond_def_pdist_kwargs
  • d_zeros_array_squareform
  • dist_more_metrics
  • dist_use_kwargs
  • dists_doc_more_kwargs
  • drop_broadcast_repeat
  • drop_cdist_fin_rchk
  • drop_dask_ver_chck
  • drop_dice_docs_dot
  • enforce_1d_bool_arrs
  • fix_euclidean_doc
  • fix_license_typo
  • fix_mahalanobis_doc_typo
  • fix_pdist_bug
  • fix_pdist_metric_def
  • fix_ravel_chks
  • fix_seuclidean_equ
  • fix_utils_tst_name
  • flake8_fixes
  • master
  • opt_dist_ident
  • opt_gen_pdist_diag
  • opt_gen_pdist_diag_2
  • opt_pdist_diag
  • opt_squareform
  • pdist_doc_more_kwargs
  • pdist_grp_cdist_comps
  • pdist_knwn_shape
  • pdist_norm_arr
  • pdist_store_mask
  • pdist_use_pycompat_range
  • ravel_no_concat
  • rchk_lst_z_squareform
  • ref_broadcast_uv
  • ref_math_expr
  • rename_uv_mtx
  • req_numpy_dask
  • req_scipy_tsts
  • rfrsh_dim_check
  • simp_cdist_apply
  • sp_case_ravel
  • sty_fix__cdist_apply
  • support_1pt_pdist
  • temp
  • tidy_formulae
  • tst_2d_more_shapes
  • tst_cdist_shapes
  • tst_wrong_lengths
  • tsts_w_kw
  • tweak_cdist_conv
  • tweak_tst_comp
  • use_cookiecutter
  • use_mathjax_docs
  • use_minkowski_dist_mat
  • use_rel_imp
  • v0.1.0
  • v0.2.0
  • vendor_indices
  • wrap_braycurtis_doc

pending completion
674

push

travis-ci

jakirkham
Drop unused empty array

The empty array was really just filler at this point. Not to mention it
doesn't make much sense now that we are using flattened results from
`pdist` and the empty array is not being flattened at all.

357 of 357 relevant lines covered (100.0%)

3.97 hits per line

Relevant lines Covered
Build:
Build:
357 RELEVANT LINES 357 COVERED LINES
3.97 HITS PER LINE
Source Files on opt_gen_pdist_diag_recrsv
  • List 0
  • Changed 1
  • Source Changed 1
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
674 opt_gen_pdist_diag_recrsv Drop unused empty array The empty array was really just filler at this point. Not to mention it doesn't make much sense now that we are using flattened results from `pdist` and the empty array is not being flattened at all. push 11 Oct 2017 02:32PM UTC jakirkham travis-ci pending completion  
673 opt_gen_pdist_diag_recrsv Unwrap some short lines in pdist push 10 Oct 2017 08:57PM UTC jakirkham travis-ci pending completion  
670 opt_gen_pdist_diag_recrsv Slice `pdist` recursive blocks once Combine to calls to `getitem` on the blocks that `pdist` acts on recursively so there is only one call to `getitem`. Should make things a bit more efficient. push 10 Oct 2017 08:44PM UTC jakirkham travis-ci pending completion  
668 opt_gen_pdist_diag_recrsv Use concatenate to break chunks for recursion Instead of explicitly setting the chunking for recursive calls to `pdist`. Simply slice each piece and use `concatenate` to join them back together. This has basically the same effect as rechunking, b... push 10 Oct 2017 08:40PM UTC jakirkham travis-ci pending completion  
666 opt_gen_pdist_diag_recrsv Avoid using `squareform` in `pdist` Instead of using `squareform` to restructure the result in `pdist` from each recursive call, adjust the recursive strategy to work with the sparse `pdist` result. This should cut a significant amount of overhea... push 10 Oct 2017 08:34PM UTC jakirkham travis-ci pending completion  
661 opt_gen_pdist_diag_recrsv <a href="https://github.com/jakirkham/dask-distance/commit/ae0b43f91">Revert &quot;Try to restore previous chunking for squareform&quot; This reverts commit </a><a class="double-link" href="https://github.com/jakirk... push 09 Oct 2017 08:09PM UTC jakirkham travis-ci pending completion  
658 opt_gen_pdist_diag_recrsv <a href="https://github.com/jakirkham/dask-distance/commit/a759f0f1e">Revert &quot;Try to restore previous chunking for squareform&quot; This reverts commit </a><a class="double-link" href="https://github.com/jakirk... push 09 Oct 2017 06:43PM UTC jakirkham travis-ci pending completion  
652 opt_gen_pdist_diag_recrsv Recursively handle pdist's diagonal chunks Make use of `cdist` for computing the bulk of the results for `pdist`. However drop all duplicate chunks on the opposite side of the diagonal. Though keep all chunks on the right side of the diagonal. A... push 09 Oct 2017 03:52PM UTC jakirkham travis-ci pending completion  
642 opt_gen_pdist_diag_recrsv Recursively handle pdist's diagonal chunks Make use of `cdist` for computing the bulk of the results for `pdist`. However drop all duplicate chunks on the opposite side of the diagonal. Though keep all chunks on the right side of the diagonal. A... push 09 Oct 2017 05:25AM UTC jakirkham travis-ci pending completion  
641 opt_gen_pdist_diag_recrsv Recursively handle pdist's diagonal chunks Make use of `cdist` for computing the bulk of the results for `pdist`. However drop all duplicate chunks on the opposite side of the diagonal. Though keep all chunks on the right side of the diagonal. A... push 09 Oct 2017 05:20AM UTC jakirkham travis-ci pending completion  
See All Builds (544)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc