-
Notifications
You must be signed in to change notification settings - Fork 92
Add issue templates #58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a bug report for Rust. | ||
labels: C-bug | ||
--- | ||
<!-- | ||
Thank you for filing a bug report! 🐛 Please provide a short summary of the bug, | ||
along with any information you feel relevant to replicating the bug. | ||
--> | ||
|
||
I tried this code: | ||
|
||
```rust | ||
<code> | ||
``` | ||
|
||
I expected to see this happen: *explanation* | ||
|
||
Instead, this happened: *explanation* | ||
|
||
### Meta | ||
|
||
`rustc --version --verbose`: | ||
``` | ||
<version> | ||
``` | ||
|
||
|
||
`crate version in Cargo.toml`: | ||
```toml | ||
[dependencies] | ||
stdsimd = | ||
``` | ||
<!-- If this specifies the repo at HEAD, please include the latest commit. --> | ||
|
||
|
||
<!-- | ||
If a backtrace is available, please include a backtrace in the code block by | ||
setting `RUST_BACKTRACE=1` in your environment. e.g. | ||
`RUST_BACKTRACE=1 cargo build`. | ||
--> | ||
<details><summary>Backtrace</summary> | ||
<p> | ||
|
||
``` | ||
<backtrace> | ||
``` | ||
|
||
</p> | ||
</details> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Intrinsic Support | ||
url: https://github.com/rust-lang/stdarch/issues | ||
about: Please direct issues about Rust's support for vendor intrinsics to core::arch | ||
- name: Internal Compiler Error | ||
url: https://github.com/rust-lang/rust/issues | ||
about: Please report ICEs to the rustc repository | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ICEs may also be relevant here? If anyone is going to fix a stdsimd related ICE, it's probably us. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since the compiler CLI already points ICEs back to the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, ICEs are pretty much by definition issues with the compiler. We should obviously fix anything that primarily is an issue for SIMD-related code, though. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
name: Feature Request | ||
about: Request an addition to the core::simd API | ||
labels: C-feature-request | ||
--- | ||
<!-- | ||
Hello! | ||
We are very interested in any feature requests you may have. | ||
However, please be aware that core::simd exists to address concerns with creating a portable SIMD API for Rust. | ||
Requests for extensions to compiler features, such as `target_feature`, binary versioning for SIMD APIs, or | ||
improving specific compilation issues in general should be discussed at https://internals.rust-lang.org/ | ||
--> |
Uh oh!
There was an error while loading. Please reload this page.