Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit 119be5f

Browse files
committed
rename "Dora" to "Core"
1 parent 668cf20 commit 119be5f

File tree

831 files changed

+456
-453
lines changed

Some content is hidden

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

831 files changed

+456
-453
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343
# run: RUSTFLAGS="-Z sanitizer=address" cargo +nightly build --target x86_64-unknown-linux-gnu
4444

4545
# - name: ASAN Tests Debug
46-
# run: ruby tools/tester.rb --binary=target/x86_64-unknown-linux-gnu/debug/dora --env ASAN_OPTIONS=detect_leaks=1
46+
# run: ruby tools/tester.rb --binary=target/x86_64-unknown-linux-gnu/debug/core --env ASAN_OPTIONS=detect_leaks=1
4747

4848
# - name: ASAN Build Release
4949
# run: RUSTFLAGS="-Z sanitizer=address" cargo +nightly build --release --target x86_64-unknown-linux-gnu
5050

5151
# - name: ASAN Tests Release
52-
# run: ruby tools/tester.rb --binary=target/x86_64-unknown-linux-gnu/release/dora --env ASAN_OPTIONS=detect_leaks=1
52+
# run: ruby tools/tester.rb --binary=target/x86_64-unknown-linux-gnu/release/core --env ASAN_OPTIONS=detect_leaks=1
5353

5454
compile-arm64:
5555
name: compile arm64
@@ -70,7 +70,7 @@ jobs:
7070
run: rustup target add aarch64-unknown-linux-gnu
7171

7272
- name: Build ARM64
73-
run: cd dora && cargo check --target=aarch64-unknown-linux-gnu --no-default-features
73+
run: cd core && cargo check --target=aarch64-unknown-linux-gnu --no-default-features
7474

7575
test:
7676
name: test ${{ matrix.os }}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"files.exclude": {
33
"**/*.un~": true,
44
"experiments/raise/target/**": true,
5-
"lib/dora-parser/target/**": true,
5+
"lib/core-parser/target/**": true,
66
"target/**": true
77
},
88
"files.watcherExclude": {

Cargo.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[workspace]
22
resolver = "2"
33
members = [
4-
"dora",
5-
"dora-asm",
6-
"dora-parser",
4+
"core",
5+
"core-asm",
6+
"core-parser",
77
]
88

99
[profile.release]

README.md

Lines changed: 6 additions & 6 deletions
File renamed without changes.

bench/binarytrees/bench.log

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sys 0m1.464s
1111
real 0m5.345s
1212
user 0m4.908s
1313
sys 0m1.388s
14-
dora
14+
core
1515
Finished release [optimized] target(s) in 0.0 secs
1616

1717
real 1m13.358s

bench/binarytrees/bench.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ javac binarytrees.java
88
for i in $(seq 1 $RUNS); do time java binarytrees $ARG; done
99

1010
echo
11-
echo "dora" 1>&2
11+
echo "core" 1>&2
1212
pushd ../..
1313
cargo build --release
14-
for i in $(seq 1 $RUNS); do time target/release/dora --heap-size=512M bench/binarytrees/binarytrees.dora $ARG; done
14+
for i in $(seq 1 $RUNS); do time target/release/core --heap-size=512M bench/binarytrees/binarytrees.core $ARG; done
1515
popd
1616

1717
echo

0 commit comments

Comments
 (0)