Search is not available for this dataset
repo_id stringlengths 12 110 | file_path stringlengths 24 164 | content stringlengths 3 89.3M | __index_level_0__ int64 0 0 |
|---|---|---|---|
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_asin_d_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_acos_s_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_asin_d_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
.text
.L_2__routine_start___svml_asin8_z0_0:
.align 16,0x90
.globl __svml_asin8
__svml_asin8:
.cfi_startproc
..L2:
pushq %rbp... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_asinh_s_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_sinh_s_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_atan_d_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
*
* For 0.0 <= x <= 7.0/16.0: atan(x) = atan(0.0) + atan(s), where s=(x-0.0)/(1.0+0.0*x)
* For 7.0/... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_sin_h_la.s | /*******************************************
* Copyright (C) 2022 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
*
* Computing 2^(-5)*(RShifter0 + x*(1/pi));
* The scaling needed to get around limited exponent range for long Pi r... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_atan_s_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
*
* For 0.0 <= x <= 7.0/16.0: atan(x) = atan(0.0) + atan(s), where s=(x-0.0)/(1.0+0.0*x)
* For 7.0/... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_pow_d_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_log2_d_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
* * log2(x) = VGETEXP(x) + log2(VGETMANT(x))
* * VGETEXP, VGETMANT will correctly treat special cases too (inc... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_atanh_d_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
* *
* * Compute 0.5*[log(1+x)-log(1-x)], using small table
* * lookups that map to AVX3 permute instructions
*... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_expm1_s_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
* * After computing exp(x) in high-low parts, an accurate computation is performed to obtain exp(x)-1
* * Typical e... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_tan_d_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
*
* ( optimized for throughput, with small table lookup, works when HW FMA is available )
*
* Imp... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_exp2_h_la.s | /*******************************************
* Copyright (C) 2022 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
*
* 2^X = 2^Xo x 2^{X-Xo}
* 2^X = 2^K x 2^fo x 2^{X-Xo}
* 2^X = 2^K x 2^fo x 2^r
*
* 2^K ... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_asinh_s_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
* *
* * Compute log(x+sqrt(x*x+1)) using RSQRT14/RSQRT28 for starting the
* * square root approximation, and sm... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_log1p_s_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_pow_s_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_sin_s_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_cosh_s_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_exp2_s_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_log1p_h_la.s | /*******************************************
* Copyright (C) 2022 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
*
* log(x) = VGETEXP(x)*log(2) + log(VGETMANT(x))
* VGETEXP, VGETMANT will correctly treat special cases too (incl... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_asinh_d_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
* *
* * Compute log(x+sqrt(x*x+1)) using RSQRT14/RSQRT28 for starting the
* * square root approximation, and sm... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_expm1_d_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
* * After computing exp(x) in high-low parts, an accurate computation is performed to obtain exp(x)-1
* * Typical e... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_exp10_h_la.s | /*******************************************
* Copyright (C) 2022 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
*
* exp10(x) = 2^x/log10(2) = 2^n * (1 + T[j]) * (1 + P(y))
*
* x = m*log10(2)/K + y, y in [-log10(2)/K..log10(... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_exp2_d_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_log10_d_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
* * log10(x) = VGETEXP(x)*log10(2) + log10(VGETMANT(x))
* * VGETEXP, VGETMANT will correctly treat special cas... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_tan_h_la.s | /*******************************************
* Copyright (C) 2022 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
*
* Implementation reduces argument as:
* sX + N*(sNPi1+sNPi2), where sNPi1+sNPi2 ~ -pi/2
* RShifter + x*(2/pi)... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_sinh_d_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_expm1_h_la.s | /*******************************************
* Copyright (C) 2022 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
*
* After computing exp(x), an accurate computation is performed to obtain exp(x)-1
* Typical exp() implementation... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_log2_s_la.s | /*******************************************
* Copyright (C) 2023 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
* * log2(x) = VGETEXP(x) + log2(VGETMANT(x))
* * VGETEXP, VGETMANT will correctly treat special cases too (inc... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_log2_d_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_atan_s_ha.s | /*******************************************************************************
* INTEL CONFIDENTIAL
* Copyright 1996-2023 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_pow_h_la.s | /*******************************************
* Copyright (C) 2022 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
*
* For pow computation sequences for log2() and exp2() are done with small tables
* The log2() part uses VGETEX... | 0 |
public_repos/SVML/linux | public_repos/SVML/linux/avx512/svml_z0_acosh_h_la.s | /*******************************************
* Copyright (C) 2022 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*******************************************/
/*
* ALGORITHM DESCRIPTION:
*
* Compute acosh(x) as log(x + sqrt(x*x - 1))
*
* Special cases:
*
* acosh(NaN) = quiet NaN, and raise inva... | 0 |
public_repos | public_repos/archive/numpy-community-events-announcements.md | **NUMPY COMMUNITY EVENTS ANNOUNCEMENTS**
Every event announcement must contain the following information:
- type of a NumPy community event (e.g., triage meeting),
- date and time of the event (for time, use the GMT time zone),
- a link to the virtual event (Zoom, Google Meet, etc.),
- a link to the event agenda.
**N... | 0 |
public_repos | public_repos/archive/numpy-meetings-glossary.md | **NumPy community call:** A fortnightly meeting to share updates on everything
that is happening in the NumPy community. Everyone is welcome
to attend and contribute to a conversation.
To add to the meeting agenda the topics you’d like to discuss,
follow the link: https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg
***
**Num... | 0 |
public_repos | public_repos/archive/README.md | # Archive of documents related to the project governance and management
The glossary of all NumPy contributor community meetings is located [here](https://github.com/numpy/archive/blob/main/numpy-meetings-glossary.md).
## `community_meetings`
Notes taken during bi-weekly community calls.
## `newcomers_meetings`
No... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2022-08-11.md | # 2022-08-11 NumPy Newcomers' Hour
- Time: 2:00 pm UTC
- Join the meeting via Zoom: https://us02web.zoom.us/j/87192457898
- [Numpy community events calendar](https://scientific-python.org/calendars/)
- [Community meetings notes archive](https://github.com/numpy/archive/tree/main/community_meetings)
- [Triage meetings... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/NumPyNewcomersHour_meeting_template.md | # 2022-05-05 NumPy Newcomers' Hour
- Time: 4:00 pm UTC
- Join the meeting via Zoom: https://us02web.zoom.us/j/87192457898
- [NumPy community events calendar](https://scientific-python.org/calendars/)
- [Community meetings notes archive](https://github.com/numpy/archive/tree/main/community_meetings)
- [Triage meetings ... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2022-10-20.md | # 2022-10-20 NumPy Newcomers' Hour
- Time: 8:00 pm UTC
- Join the meeting via Zoom: https://us06web.zoom.us/j/82563808729?pwd=ZFU3Z2dMcXBGb05YemRsaGE1OW5nQT09
(To dial in, find your local number: https://us06web.zoom.us/u/kKJh3Vl8D)
- [NumPy community events calendar](https://scientific-python.org/calendars/)
- [Comm... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2022-07-14.md | # 2022-07-14 NumPy Newcomers' Hour
- Time: 4:00 pm UTC
- Join the meeting via Zoom: https://us02web.zoom.us/j/87192457898
- [Numpy community events calendar](https://scientific-python.org/calendars/)
- [Community meetings notes archive](https://github.com/numpy/archive/tree/main/community_meetings)
- [Triage meetings... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2022-05-19.md | # 2022-05-19 NumPy Newcomers' Hour
- Time: 4:00 pm UTC
- Join the meeting via Zoom: https://us02web.zoom.us/j/87192457898
- [Numpy community events calendar](https://scientific-python.org/calendars/)
- [Community meetings notes archive](https://github.com/numpy/archive/tree/main/community_meetings)
- [Triage meetings... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2023-02-23.md | # 2023-02-23 NumPy Newcomers' Hour
- Time: 12:00 pm UTC
- Join the meeting via Zoom: https://us06web.zoom.us/j/82563808729?pwd=ZFU3Z2dMcXBGb05YemRsaGE1OW5nQT09
(To dial in, find your local number: https://us06web.zoom.us/u/kKJh3Vl8D)
- [NumPy community events calendar](https://scientific-python.org/calendars/)
- [Com... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2023-01-26.md | # 2023-01-26 NumPy Newcomers' Hour
- Time: 12:00 pm UTC
- Join the meeting via Zoom: https://us06web.zoom.us/j/82563808729?pwd=ZFU3Z2dMcXBGb05YemRsaGE1OW5nQT09
(To dial in, find your local number: https://us06web.zoom.us/u/kKJh3Vl8D)
- [NumPy community events calendar](https://scientific-python.org/calendars/)
- [Com... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/numpynewcomers-postevent-feedback-questionnaire.md | 1. Is this your first time attending a NumPy Newcomers' Hour? *(Required, single choice)*
* Yes
* No
* Prefer not to answer
2. How helpful did you find this session? *(Required, single choice)*
* Not helpful at all
* Not very helpful
* Helpful
* Extremely helpful
3. How welcoming did you find this session? *(Required... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2022-12-15.md | # 2022-12-15 NumPy Newcomers' Hour
- Time: 8:00 pm UTC
- Join the meeting via Zoom: https://us06web.zoom.us/j/82563808729?pwd=ZFU3Z2dMcXBGb05YemRsaGE1OW5nQT09
(To dial in, find your local number: https://us06web.zoom.us/u/kKJh3Vl8D)
- [NumPy community events calendar](https://scientific-python.org/calendars/)
- [Comm... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2023-11-02.md | # 2023-11-02 NumPy Newcomers' Hour
- Time: 12pm UTC
- Join the meeting via Zoom: https://numfocus-org.zoom.us/j/82563808729?pwd=ZFU3Z2dMcXBGb05YemRsaGE1OW5nQT09
(To dial in, find your local number: https://numfocus-org.zoom.us/u/kedmqH5Ki8)
- [NumPy community events calendar](https://scientific-python.org/calendars/) ... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2022-06-16.md | # 2022-06-16 NumPy Newcomers' Hour
- Time: 4:00 pm UTC
- Join the meeting via Zoom: https://us02web.zoom.us/j/87192457898
- [Numpy community events calendar](https://scientific-python.org/calendars/)
- [Community meetings notes archive](https://github.com/numpy/archive/tree/main/community_meetings)
- [Triage meetings... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2022-09-22.md | # 2022-09-22 NumPy Newcomers' Hour: Design Jam! 🎨🤝
- Time: 2:00 pm UTC
- Join the meeting via Zoom: https://us06web.zoom.us/j/82563808729?pwd=ZFU3Z2dMcXBGb05YemRsaGE1OW5nQT09
(To dial in, find your local number: https://us06web.zoom.us/u/kKJh3Vl8D)
- [NumPy community events calendar](https://scientific-python.org/ca... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/README.md | **NUMPY NEWCOMERS' HOUR DOCUMENTATION**
**Meeting template**
Use the following HackMD template to keep notes at NumPy Newcomers’ Hours: https://hackmd.io/3f3otyyuTte3FU9y3QzsLg.
Remember to share a link to the document during meetings via a chat window. Everyone is welcome and encouraged to contribute to it.
***
... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2022-06-02.md | # 2022-06-02 NumPy Newcomers' Hour
- Time: 4:00 pm UTC
- Join the meeting via Zoom: https://us02web.zoom.us/j/87192457898
- [Numpy community events calendar](https://scientific-python.org/calendars/)
- [Community meetings notes archive](https://github.com/numpy/archive/tree/main/community_meetings)
- [Triage meetings... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2023-06-15.md | # 2023-06-15 NumPy Newcomers' Hour
- Time: 12pm UTC
- Join the meeting via Zoom: https://us06web.zoom.us/j/82563808729?pwd=ZFU3Z2dMcXBGb05YemRsaGE1OW5nQT09
(To dial in, find your local number: https://us06web.zoom.us/u/kKJh3Vl8D)
- [NumPy community events calendar](https://scientific-python.org/calendars/)
- [Communi... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2023-05-18.md | # 2023-05-18 NumPy Newcomers' Hour
- Time: 12pm UTC
- Join the meeting via Zoom: https://us06web.zoom.us/j/82563808729?pwd=ZFU3Z2dMcXBGb05YemRsaGE1OW5nQT09
(To dial in, find your local number: https://us06web.zoom.us/u/kKJh3Vl8D)
- [NumPy community events calendar](https://scientific-python.org/calendars/)
- [Communi... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2023-05-04.md | # 2023-05-04 NumPy Newcomers' Hour
- Time: 8pm UTC
- Join the meeting via Zoom: https://us06web.zoom.us/j/82563808729?pwd=ZFU3Z2dMcXBGb05YemRsaGE1OW5nQT09
(To dial in, find your local number: https://us06web.zoom.us/u/kKJh3Vl8D)
- [NumPy community events calendar](https://scientific-python.org/calendars/)
- [Communit... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2022-10-06.md | # 2022-10-06 NumPy Newcomers' Hour
- Time: 2:00 pm UTC
- Join the meeting via Zoom: https://us06web.zoom.us/j/82563808729?pwd=ZFU3Z2dMcXBGb05YemRsaGE1OW5nQT09
(To dial in, find your local number: https://us06web.zoom.us/u/kKJh3Vl8D)
- [NumPy community events calendar](https://scientific-python.org/calendars/)
- [Comm... | 0 |
public_repos/archive | public_repos/archive/newcomers_meetings/newcomers-2022-05-05.md | # 2022-05-05 NumPy Newcomers' Hour
- Time: 4:00 pm UTC
- Join the meeting via Zoom: https://us02web.zoom.us/j/87192457898
- [Numpy community events calendar](https://scientific-python.org/calendars)
- [Community meetings notes archive](https://github.com/numpy/archive/tree/main/community_meetings)
- [Triage meetings n... | 0 |
public_repos/archive | public_repos/archive/optim_team_meetings/np-optim-2023-08-07.md | # 2023-08-07 NumPy optimization meeting
- Time: 16:00 (4pm) UTC
- Join via Zoom: https://numfocus-org.zoom.us/j/88162122074?pwd=a3h0cTZubzlLcTZzMVhCL1AxUVFMdz09
- [NumPy community events calendar](https://scientific-python.org/calendars)
- [Upcoming community meeting agenda](https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg)
-... | 0 |
public_repos/archive | public_repos/archive/optim_team_meetings/np-optim-2023-08-28.md | # 2023-08-28 NumPy optimization meeting
- Time: 16:00 (4pm) UTC
- Join via Zoom: https://numfocus-org.zoom.us/j/88162122074?pwd=a3h0cTZubzlLcTZzMVhCL1AxUVFMdz09
- [NumPy community events calendar](https://scientific-python.org/calendars)
- [Upcoming community meeting agenda](https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg)
-... | 0 |
public_repos/archive | public_repos/archive/optim_team_meetings/np-optim-2023-09-18.md | # 2023-09-18 NumPy optimization meeting
- Time: 16:00 (4pm) UTC
- Join via Zoom: https://numfocus-org.zoom.us/j/88162122074?pwd=a3h0cTZubzlLcTZzMVhCL1AxUVFMdz09
- [NumPy community events calendar](https://scientific-python.org/calendars)
- [Upcoming community meeting agenda](https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg)
-... | 0 |
public_repos/archive | public_repos/archive/presentation_resources/NumPy_info_header.svg | <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
<!ENTITY ns_ai "http://... | 0 |
public_repos/archive | public_repos/archive/presentation_resources/NumPy_efficiency_illustration.svg | <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://... | 0 |
public_repos/archive | public_repos/archive/presentation_resources/NumPy_info_no_header.svg | <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
<!ENTITY ns_ai "http://... | 0 |
public_repos/archive | public_repos/archive/presentation_resources/readme.md | This repository is a collection of resources to use for presentations about the NumPy project.
| 0 |
public_repos/archive | public_repos/archive/video_transcripts/numpy-deprecations-ENG.txt | Transcript of Maintaining NumPy: Deprecations :: Sebastian Berg (https://www.youtube.com/watch?v=DjiC4-8c5f0)
0:00:03.920,0:00:09.120
Welcome, welcome, everyone! My name is
Inessa Pawson. I'm a contributor experience
0:00:09.120,0:00:14.880
lead for NumPy. I'm a caucasian blonde woman
wearing a navy blue dress an... | 0 |
public_repos/archive | public_repos/archive/video_transcripts/find-your-way–ENG.txt | Transcript of Find your way in the NumPy codebase :: Melissa Mendonca,
Sebastian Berg, Tyler Reddy, Matti Picus (https://www.youtube.com/watch?v=mTWpBf1zewc)
0:00:05.279,0:00:10.080
Wonderful... okay. So yeah, Inessa gave a
0:00:08.480,0:00:12.480
brief introduction of the people
0:00:10.080,0:00:14.559
participati... | 0 |
public_repos/archive | public_repos/archive/video_transcripts/find-your-way–PT_BR.txt | 0:00:05.279,0:00:10.080
Excelente... okay. Bem, Inessa fez
0:00:08.480,0:00:12.480
uma breve apresentação das pessoas
0:00:10.080,0:00:14.559
que estão participando mas eu
0:00:12.480,0:00:17.199
goastaria que eles se apresentassem
0:00:14.559,0:00:18.960
rapidamente
0:00:17.199,0:00:22.000
dissessem algumas palav... | 0 |
public_repos/archive | public_repos/archive/other_meetings/2022-07-12-SciPy2022_Team_Summit.md | # NumPy Team Summit
(Mildly reformatted version of Google Docs used during the meeting.)
**Date: 2022-07-12**
**Location for in-person attendance: AT&T Convention Center, 1900 University Ave, Austin, TX 78705
Room: 214**
Join via Zoom: https://us02web.zoom.us/j/82177549896?pwd=amFPV0VsWVhsVGUzU0NJd0lmTWhxdz09
Meet... | 0 |
public_repos/archive | public_repos/archive/other_meetings/2020-04-21-array-protocols-discussion-notes.md | # NumPy Protocol discussions (NEP 37, etc.)
This is an attempt to rekindle discussions around improving array-protocols and array-like dispatching. Since the tensor summit which could have been a venue to move this forward was canceled, lets try a video conference.
### Organizational
**When:** Tuesday, April 21st, ... | 0 |
public_repos/archive | public_repos/archive/other_meetings/survey-2020-06-09.md | # 2020-06-09 NumPy Community Survey Meeting
Time: 4:30 pm PDT
Join via Zoom at https://berkeley.zoom.us/j/98561878386
[Slack workspace](https://numpy-team.slack.com)
[Meetings archive](https://github.com/numpy/archive/tree/master/status_meetings)
**Present:** Ross, Stephanie, Sebastian, Xiaoyi, Inessa
# Meetin... | 0 |
public_repos/archive | public_repos/archive/other_meetings/survey-2019-12-16.md | # 2019-12-16 NumPy Community Survey Meeting
Time: 11:00 am PST / 2:00 pm EST / 8:00 pm CET
Join Hangouts Meet: https://meet.google.com/trm-gvto-guz
<br> **note: Hangouts works best with Chrome*
Join by phone: +1 980-533-5653 PIN: 455 016 082#
[Slack workspace](https://numpy-team.slack.com)
[Meetings archive](https... | 0 |
public_repos/archive | public_repos/archive/other_meetings/survey-2020-08-28.md | # 2020-08-28 NumPy Community Survey Meeting
Time: 2:00 PM PDT
Join via Zoom at https://berkeley.zoom.us/j/91746012019?pwd=WUxIVjlQL0hHNWxycFhWMEphblAyZz09
[Slack workspace](https://numpy-team.slack.com)
[Meetings archive](https://github.com/numpy/archive/tree/master/status_meetings)
**Present:** Ralf, Xiaoyi, Ines... | 0 |
public_repos/archive | public_repos/archive/other_meetings/season-of-docs-2020-all.md | ---
tags: documentation, season of docs
---
# 2019 Google Season of Docs Meetings
---
## Notes from 2 Mar '20
Rescheduling this meeting & moving to once every 3 weeks. Open it up more widely; announce on mailing list.
New numpy.org website launch plan: March 15th roll-out.
Question on Crowdin: is there a glossary... | 0 |
public_repos/archive | public_repos/archive/sprints/2020-07-11.md | ---
tags: NumPy
---
# Welcome to the NumPy sprint
### Some resources:
The NumPy github repo https://github.com/numpy/numpy/
Map names to the core contributor's nicknames, some even have pictures
https://numpy.org/gallery/team.html
Sprint video on Zoom: https://berkeley.zoom.us/j/94953318111?pwd=UEtFUGlWSy9DV0Q2TD... | 0 |
public_repos/archive | public_repos/archive/sprints/2019-11-22.md | # NumPy sprint: Nov 22-23 2019
**Attending:** Stefan vdW, Matti, Sebastian, Warren, Chuck, ZJ, Ralf, Inessa, Stephan Hoyer, Joe LaChance, Ross Barnowski
## Topics: Day 1
| Time | Description |
|-------------|---------------------------------|
| 9:00–10:30 | NumPy vision and roadmap ... | 0 |
public_repos/archive/sprints | public_repos/archive/sprints/pyconus22-mentoredsprints-numpy-scipy/pyconus22-mentoredsprints-numpy-scipy-quickstart.md | # PyCon US'22 Mentored Sprints - NumPy & SciPy
The main purpose of this sprint is to help newcomers contribute to NumPy & SciPy.
To join Mentored Sprints Discord, follow the link: https://t.co/zTrfEb4Mzh.
## NumPy
### Helpful resources*
- [Contributing to NumPy](https://numpy.org/devdocs/dev/index.html)
- [Using ... | 0 |
public_repos/archive | public_repos/archive/numpy_docs_team_handbook/README.md | # NumPy Documentation Team handbook
## Leadership
**December 2022 - present** Ross Barnowski, Mukulika Pahari
**March 2020 - December 2022** Melissa Mendonça
### Team Leads responsibilities
- Hosting meetings.
- Ensuring that every team meeting is properly documented and the notes are archived.
- Initiating and... | 0 |
public_repos/archive | public_repos/archive/numpy_docs_team_handbook/onboarding-checklist.md | # Checklist for onboarding new NumPy Documentation Team Leads
1. Schedule a meeting with a new lead to discuss ongoing work and current priorities for the Documentation Team.
2. Reach out to NumFOCUS with a request to add a new lead to the NumFOCUS Zoom license.
3. Add a new lead as a meeting host to the Docs Team Zoo... | 0 |
public_repos/archive | public_repos/archive/presentations/numpy_info_map.md | # NumPy Information Map
## Objective
There is loads of information about NumPy scattered across various sites, documents and articles besides several others that are created by the community at large. Our objective is to augment the ongoing NumPy website and documentation spruce-up efforts, through classification of ... | 0 |
public_repos/archive/presentations | public_repos/archive/presentations/data_umbrella_dec_2_2020/data_umbrella.ipynb | # About us: Steering Council, Teams, Sponsors, Partners
from IPython.display import IFrame, display; display(IFrame("https://numpy.org/about/index.html", width="100%", height=400))# NumPy development is driven via its Roadmap and NEPS
from IPython.display import IFrame, display
display(IFrame("https://numpy.org/neps/",... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2020-09-08.md | ---
tags: NumPy, triage
---
# 2020-09-08 NumPy Development Meeting -- Triage
Note: we now alternate between [community meetings](https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg) and triage meetings.
- Time: 11am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535 (or [dial-in](https://berkeley.zoom.us/u/aC... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2023-07-12.md | ---
tags: NumPy, triage
---
# 2023-07-12 NumPy triage meeting
- Time: 17:00 (5pm) UTC
- Join via Zoom: https://us06web.zoom.us/j/82096749952?pwd=MW9oUmtKQ1c3a2gydGk1RTdYUUVXZz09 (To dial in, find your local number: https://us06web.zoom.us/u/kALxGZQj3)
- [NumPy community events calendar](https://scientific-python.org... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2021-06-30.md | ---
tags: NumPy, triage
---
# 2021-06-30 NumPy Development Meeting -- Triage
Note: we alternate between [community meetings](https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg) and triage meetings.
- Time: 9am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535 (or [dial-in](https://berkeley.zoom.us/u/aC3ENhy... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2019-03-13.md | ---
tags: NumPy, BIDS
---
# 2019-3-13 BIDS/NumPy Development Meeting
- Join via Zoom at [https://berkeley.zoom.us/j/400054438](https://berkeley.zoom.us/j/400054438), or dial-in through a [local phone number](https://zoom.us/u/adQDmEc1wI).
- [Trello workboard](https://trello.com/b/Azg4fYZH/numpy-at-bids)
- [Previous m... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2022-04-20.md | ---
tags: NumPy, triage
---
# 2022-04-20 NumPy development meeting -- triage
- Time: 16:00 (4 pm) UTC
- Join via Zoom at https://berkeley.zoom.us/j/762261535 (or [dial-in](https://berkeley.zoom.us/u/aC3ENhycM))
- [Numpy community events calendar](https://scientific-python.org/calendars/numpy.ics)
- [Triage meetings n... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2022-10-05.md | ---
tags: NumPy, triage
---
# 2022-10-05 NumPy triage meeting
- Time: 16:00 (4 pm) UTC
- Join via Zoom: https://us06web.zoom.us/j/82096749952?pwd=MW9oUmtKQ1c3a2gydGk1RTdYUUVXZz09 (To dial in, find your local number: https://us06web.zoom.us/u/kALxGZQj3)
- [NumPy community events calendar](https://scientific-python.org... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2022-07-27.md | ---
tags: NumPy, triage
---
# 2022-07-27 NumPy development meeting -- triage
- Time: 16:00 (4 pm) UTC
- Join via Zoom: https://zoom.us/j/92187767791?pwd=a09aSmc5NGs4NWNpd09pNlBPV2F4QT09 (temporary link for today only)
- [Numpy community events calendar](https://scientific-python.org/calendars)
- [Triage meetings note... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2020-05-06.md | ---
tags: NumPy, triage
---
# 2020-05-06 NumPy Development Meeting -- Triage
Note: we now alternate between [community meetings](https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg) and triage meetings.
- Time: 11am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535 (or [dial-in](https://berkeley.zoom.us/u/aC... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2019-08-14.md | ---
tags: NumPy
---
# 2019-08-14 NumPy Development Meeting
- Time: 11am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535
- [Trello workboard](https://trello.com/b/Azg4fYZH/numpy-at-bids)
- [Previous meetings](https://github.com/BIDS-numpy/docs/tree/master/status_meetings)
**Present:** Tyler, Chuc... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2021-03-24.md | ---
tags: NumPy, triage
---
# 2021-03-24 NumPy Development Meeting -- Triage
Note: we alternate between [community meetings](https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg) and triage meetings.
- Time: 11am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535 (or [dial-in](https://berkeley.zoom.us/u/aC3ENh... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2019-09-11.md | ---
tags: NumPy
---
# 2019-09-11 NumPy Development Meeting
- Time: 11am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535
- [Trello workboard](https://trello.com/b/Azg4fYZH/numpy-at-bids)
- [Previous meetings](https://github.com/BIDS-numpy/docs/tree/master/status_meetings)
**Present:** ZJ, Tyler, ... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2019-10-02.md | ---
tags: NumPy
---
# 2019-10-02 NumPy Development Meeting
- Time: 11am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535
- [Trello workboard](https://trello.com/b/Azg4fYZH/numpy-at-bids)
- [Previous meetings](https://github.com/numpy/archive/tree/master/status_meetings)
**Present:** Matti, Stéfan... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2019-12-04.md | ---
tags: NumPy
---
nes!
# 2019-12-04 NumPy Development Meeting -- Triage
Note: we now alternate between community meetings and triage meetings.
- Time: 11am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535 (or [dial-in](https://berkeley.zoom.us/u/aC3ENhycM))
- [Trello workboard](https://trello.co... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2023-09-06.md | ---
tags: NumPy, triage
---
# 2023-09-06 NumPy triage meeting
- Time: 17:00 (5pm) UTC
- Join via Zoom: https://numfocus-org.zoom.us/j/82096749952?pwd=MW9oUmtKQ1c3a2gydGk1RTdYUUVXZz09 (To dial in, find your local number: https://numfocus-org.zoom.us/u/kjGWtVx5y)
- [NumPy community events calendar](https://scientific-... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2021-07-14.md | ---
tags: NumPy, triage
---
# 2021-07-14 NumPy Development Meeting -- Triage
Note: we alternate between [community meetings](https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg) and triage meetings.
- Time: 9am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535 (or [dial-in](https://berkeley.zoom.us/u/aC3ENhy... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2019-07-24.md | ---
tags: NumPy
---
# 2019-07-24 NumPy Development Meeting
- Time: 11am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535
- [Trello workboard](https://trello.com/b/Azg4fYZH/numpy-at-bids)
- [Previous meetings](https://github.com/BIDS-numpy/docs/tree/master/status_meetings)
**Present:** Stéfan, Seb... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2021-03-10.md | ---
tags: NumPy, triage
---
# 2021-03-10 NumPy Development Meeting -- Triage
Note: we alternate between [community meetings](https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg) and triage meetings.
- Time: 11am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535 (or [dial-in](https://berkeley.zoom.us/u/aC3ENh... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2021-09-22.md | ---
tags: NumPy, triage
---
# 2021-09-22 NumPy Development Meeting -- Triage
Note: we alternate between [community meetings](https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg) and triage meetings.
- Time: 9am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535 (or [dial-in](https://berkeley.zoom.us/u/aC3ENhy... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2018-10-31.md | # 2018-10-31 BIDS/NumPy Development Meeting
- Join via Zoom at https://berkeley.zoom.us/j/400054438, or dial-in through a [local phone number](https://zoom.us/u/adQDmEc1wI).
- [Agenda (this document)](https://hackmd.io/5WZ6VwQKSbSR_4Ng65pUFw?both)
- [Trello workboard](https://trello.com/b/Azg4fYZH/numpy-at-bids)
- [Pr... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2018-08-08.md | # Weekly status Aug 8, 2018
# dtypes
- Tyler has continued work on his missing int branch; unit test failures down from 38 to around 12, but some may be false positive due to dtype=object effects
- major challenge now seems to be preventing the dtype=object cast (probably digging into C stuff now)
- Matti notes tha... | 0 |
public_repos/archive | public_repos/archive/triage_meetings/triage-2021-08-25.md | ---
tags: NumPy, triage
---
# 2021-08-25 NumPy Development Meeting -- Triage
Note: we alternate between [community meetings](https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg) and triage meetings.
- Time: 9am Pacific Time
- Join via Zoom at https://berkeley.zoom.us/j/762261535 (or [dial-in](https://berkeley.zoom.us/u/aC3ENhy... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.