Siu Kwan Lam
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# Numba Meeting: 2022-08-09 Attendees: brandon willard, Graham Markall, Kaustubh Chaudhari, LI Da, Luk, Shannon Quinn, Todd A. Anderson, stuart, Siu Kwan Lam, Val, Jim Pivarski NOTE: All communication is subject to the [Numba Code of Conduct](https://github.com/numba/numba-governance/blob/accepted/code-of-conduct.md). Please refer to [this calendar](https://calendar.google.com/calendar/embed?src=5rqnddm4gjrdfjm31fsv182epk%40group.calendar.google.com) for the next meeting date. ## 0. Discussion - Dropping support for old Python versions: - https://github.com/numba/numba/pull/8318 - https://github.com/numba/numba/pull/8319 - https://github.com/numba/numba/pull/7920 - Question: what is the minimum supported Python for 0.57 and when can/should we merge the patches to remove support? - What implications does this have for CI?? - Stencil tests rely on 3.7 AST, do they need an upgrade? #8325 needs to be merged first. - **Consensus**: #8325 needs to be merged first then we can merge the other PRs - **Consensus**: Python 3.8 will be the oldest version of Python supported by 0.57 - Dropping support for win-32 and linux-32 - What does Anaconda distro support look like? - How does this co-incide with dropping of Python support - What about ARMv7 / AArch32? (Support statement needs an update, this is no longer supported) - https://github.com/numba/numba/issues/7452 - **Consensus**: linux-32 to be removed from code immediately and from the Anaconda internal farm after 0.56.1 - **Consensus**: win-32 to removed also as per https://www.anaconda.com/blog/new-release-anaconda-distribution-now-supporting-m1 - Dropping support for old NumPy versions: https://github.com/numba/numba/pull/8283#issuecomment-1197505150 - Only 1.19 and upwards? - Need to check on the platform support - Will this have any implications - **Consensus**: Runtime: 0.57 will support only 1.19 and above - **Consensus**: Build time: probably ok to use 1.19 to build - [Issue #8309](https://github.com/numba/numba/issues/8309) / [PR #8310](https://github.com/numba/numba/pull/8310) - CUDA: Atomic addition on complex components does not work in 0.56: - This is a regression due to changes in [PR #7999](https://github.com/numba/numba/pull/8310), which made `array.real` and `array.imag` overloads - This is a problem because: - The overloads return arrays (not permitted in CUDA device functions) - Overload can't be resolved from the low-level API (used to implement CUDA atomics) - One fix (in PR #8310) is to revert this change and use the low-level API for `.real` and `.imag` again - Pros: it works, and is a relatively simple fix - Cons: it is a step backwards in the core implementation - Another fix is to make overloads returning arrays work on CUDA - Pros: Retains forward direction in the core, a general CUDA improvement - Cons: Lots of work - needs NRT, change to call convention, and rewriting of many CUDA implementations as overloads - Siu tried doing this but got stuck on (1) target_extension problems (active context not CUDA) and (2) `_generate_real_imag_attr.<locals>.intrin_typing.<locals>.codegen` (an `@intrinsic`) not found in lowering registry. - Does a third way exist? - **Resolution:** Merge #8310 after review for 0.56.1. - Look into issues preventing it working with overloads afterwards - [PR #8294](https://github.com/numba/numba/pull/8294): CUDA: Add trig ufunc support - Works for the CUDA target, but adding simulator support is difficult. - Does it need simulator support? - Option 1: use [`__array_ufunc__`](https://numpy.org/doc/stable/reference/arrays.classes.html#numpy.class.__array_ufunc__) to fix implementation. - Option 2: Try making the "Fake within CUDA kernel array" an actual `ndarray` subclass. - Option 3: If neither of the above approaches succeed, discuss whether simulator support is required again next week. - Compilation speed benchmark - Luk ## 1. New Issues - [#8303](https://github.com/numba/numba/issues/8303) - Allow multiple outputs for `guvectorize` on CUDA target - [#8304](https://github.com/numba/numba/issues/8304) - Python 3.11 - [#8305](https://github.com/numba/numba/issues/8305) - Len of two concatenated Bytes objects is 0 - [#8307](https://github.com/numba/numba/issues/8307) - Ambiguous overloads are allowed for calls to jitted functions inside other jitted functions - Needs poking, else it is operating in "surprise mode". - [#8309](https://github.com/numba/numba/issues/8309) - Numba 0.56 does not support `atomic.add` on arrays of complexs anymore - [#8311](https://github.com/numba/numba/issues/8311) - presence of while loop breaks literal_unroll compilation - [#8314](https://github.com/numba/numba/issues/8314) - Numba not vectorizing 2d copy loop - [#8317](https://github.com/numba/numba/issues/8317) - LoweringError - [#8322](https://github.com/numba/numba/issues/8322) - Obsolete pycc script/code - Answer is yes: please remove. ### Closed Issues - [#8312](https://github.com/numba/numba/issues/8312) - numba's `np.full_like` is inconsistent with numpy's - [#8313](https://github.com/numba/numba/issues/8313) - Segfault in nested loop with aliased array ## 2. New PRs - [#8306](https://github.com/numba/numba/pull/8306) - Fix len of two concatenated Bytes objects bug - [#8308](https://github.com/numba/numba/pull/8308) - CUDA: Support for multiple signatures - [#8310](https://github.com/numba/numba/pull/8310) - CUDA: Fix Issue #8309 - atomics don't work on complex components - [#8315](https://github.com/numba/numba/pull/8315) - Add get_local_mem_per_thread method to Dispatcher - [#8316](https://github.com/numba/numba/pull/8316) - Fix error handling in float unboxing - [#8318](https://github.com/numba/numba/pull/8318) - Cleanup old support for Python 3.6 and earlier code - [#8319](https://github.com/numba/numba/pull/8319) - Bump minimum supported Python version to 3.8 - [#8320](https://github.com/numba/numba/pull/8320) - Add __name__ support for GUFuncs - [#8321](https://github.com/numba/numba/pull/8321) - Fix literal_unroll pass erroneously exiting on non-conformant loop. - [#8323](https://github.com/numba/numba/pull/8323) - Remove `mk_unique_var` from `array_analysis.py` - [#8324](https://github.com/numba/numba/pull/8324) - Remove use of mk_unique_var in untyped_passes.py - [#8325](https://github.com/numba/numba/pull/8325) - Remove use of mk_unique_var in stencil.py - [#8326](https://github.com/numba/numba/pull/8326) - Remove `mk_unique_var` from `parfor_lowering.py` ### Closed PRs ## 3. Next Release: Version 0.57.0/0.40.0, RC Jan 2023

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully