Skip to content

Commit a3a3a56

Browse files
committed
Initial commit in zksync-airbender repo
1 parent 33a6d26 commit a3a3a56

File tree

839 files changed

+3387446
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

839 files changed

+3387446
-2
lines changed

.cargo/config.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[target.aarch64-apple-darwin]
2+
# rustflags = ["-Ctarget-cpu=native"]
3+
4+
[target.x86_64-unknown-linux-gnu]
5+
# The following configs are in an increasing performance order for x86_64.
6+
# rustflags = ["-Ctarget-feature=+avx2"]
7+
# rustflags = ["-Ctarget-feature=+avx512vl,+avx512f"]
8+
# rustflags = ["-Ctarget-feature=+avx512vl,+avx512f,+avx512bw,+avx512cd,+avx512dq"]
9+
# rustflags = ["-Ctarget-feature=+avx512f"]
10+
# rustflags = ["-Ctarget-cpu=native"]
11+
12+
[target.x86_64-unknown-x86_64-pc-windows-msvc-gnu]
13+
# The following configs are in an increasing performance order for x86_64.
14+
# rustflags = ["-Ctarget-feature=+avx2"]
15+
# rustflags = ["-Ctarget-feature=+avx512vl,+avx512f"]
16+
# rustflags = ["-Ctarget-feature=+avx512vl,+avx512f,+avx512bw,+avx512cd,+avx512dq"]
17+
# rustflags = ["-Ctarget-feature=+avx512f"]
18+
# rustflags = ["-Ctarget-cpu=native"]
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
name: Bug report
3+
about: Use this template for reporting issues
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
### 🐛 Bug Report
10+
11+
#### 📝 Description
12+
13+
Provide a clear and concise description of the bug.
14+
15+
#### 🔄 Reproduction Steps
16+
17+
Steps to reproduce the behaviour
18+
19+
#### 🤔 Expected Behavior
20+
21+
Describe what you expected to happen.
22+
23+
#### 😯 Current Behavior
24+
25+
Describe what actually happened.
26+
27+
#### 🖥️ Environment
28+
29+
Any relevant environment details.
30+
31+
#### 📋 Additional Context
32+
33+
Add any other context about the problem here. If applicable, add screenshots to help explain.
34+
35+
#### 📎 Log Output
36+
37+
```
38+
Paste any relevant log output here.
39+
```
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Feature request
3+
about: Use this template for requesting features
4+
title: ''
5+
labels: feat
6+
assignees: ''
7+
---
8+
9+
### 🌟 Feature Request
10+
11+
#### 📝 Description
12+
13+
Provide a clear and concise description of the feature you'd like to see.
14+
15+
#### 🤔 Rationale
16+
17+
Explain why this feature is important and how it benefits the project.
18+
19+
#### 📋 Additional Context
20+
21+
Add any other context or information about the feature request here.

.github/pull_request_template.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## What ❔
2+
3+
<!-- What are the changes this PR brings about? -->
4+
<!-- Example: This PR adds a PR template to the repo. -->
5+
<!-- (For bigger PRs adding more context is appreciated) -->
6+
7+
## Why ❔
8+
9+
<!-- Why are these changes done? What goal do they contribute to? What are the principles behind them? -->
10+
<!-- The `Why` has to be clear to non-Matter Labs entities running their own ZK Chain -->
11+
<!-- Example: PR templates ensure PR reviewers, observers, and future iterators are in context about the evolution of repos. -->
12+
13+
## Is this a breaking change?
14+
- [ ] Yes
15+
- [ ] No
16+
17+
## Checklist
18+
19+
<!-- Check your PR fulfills the following items. -->
20+
<!-- For draft PRs check the boxes as you complete them. -->
21+
22+
- [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs).
23+
- [ ] Tests for the changes have been added / updated.
24+
- [ ] Documentation comments have been added / updated.
25+
- [ ] Code has been formatted.

0 commit comments

Comments
 (0)