Skip to content
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

1.0.0 #1

Draft
wants to merge 56 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
26b127f
refactor
xnerhu Mar 1, 2025
f6932c2
refactor
xnerhu Mar 2, 2025
be1567a
update readme
xnerhu Mar 2, 2025
8325628
x
xnerhu Mar 3, 2025
42a94c4
ci
xnerhu Mar 6, 2025
cfc3e6e
ci
xnerhu Mar 6, 2025
918a0d9
w
xnerhu Mar 6, 2025
a8a6899
Merge remote-tracking branch 'origin/main' into 1.0.0
xnerhu Mar 6, 2025
d765d66
w
xnerhu Mar 6, 2025
bbcf4cb
t
xnerhu Mar 6, 2025
85708d9
ignore
xnerhu Mar 6, 2025
efda67f
updates
xnerhu Mar 8, 2025
c34d7fc
b
xnerhu Mar 8, 2025
75f1ea7
x
xnerhu Mar 8, 2025
2bd6195
x
xnerhu Mar 8, 2025
cc5e890
w
xnerhu Mar 8, 2025
8d0b583
x
xnerhu Mar 8, 2025
0c2da64
x
xnerhu Mar 8, 2025
362acdc
x
xnerhu Mar 8, 2025
1ac87d2
w
xnerhu Mar 8, 2025
888a027
w
xnerhu Mar 8, 2025
a3db47b
x
xnerhu Mar 8, 2025
eb885d3
x
xnerhu Mar 8, 2025
cf3fece
w
xnerhu Mar 8, 2025
3fc5649
x
xnerhu Mar 8, 2025
f49e00b
x
xnerhu Mar 9, 2025
95399a3
w
xnerhu Mar 9, 2025
0873c64
x
xnerhu Mar 9, 2025
f582ede
x
xnerhu Mar 9, 2025
105e0e6
x
xnerhu Mar 9, 2025
dd45cee
w
xnerhu Mar 9, 2025
7ca764d
x
xnerhu Mar 9, 2025
29f58da
x
xnerhu Mar 15, 2025
f186740
x
xnerhu Mar 15, 2025
2913e86
x
xnerhu Mar 15, 2025
c659037
w
xnerhu Mar 16, 2025
3b91b34
x
xnerhu Mar 16, 2025
f9ab84c
xd
xnerhu Mar 23, 2025
3c1992f
x
xnerhu Mar 23, 2025
3f9079b
x
xnerhu Mar 23, 2025
acfc78e
xd
xnerhu Mar 25, 2025
9c223e5
xd
xnerhu Mar 26, 2025
5f89f31
xd
xnerhu Mar 30, 2025
aad8f85
Xd
xnerhu Mar 30, 2025
5ec7846
xd
xnerhu Mar 30, 2025
57c79a3
xd
xnerhu Mar 30, 2025
654dc9e
Xd
xnerhu Mar 30, 2025
5be5188
refactor
xnerhu Apr 2, 2025
2960d21
readme
xnerhu Apr 2, 2025
fe6d5c5
readme
xnerhu Apr 2, 2025
82c88ea
readme
xnerhu Apr 2, 2025
3088048
readme
xnerhu Apr 2, 2025
635cb80
readme
xnerhu Apr 2, 2025
e7ce769
xd
xnerhu Apr 2, 2025
c1625a6
xd
xnerhu Apr 2, 2025
f79239d
xd
xnerhu Apr 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
17 changes: 17 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
node_modules
build
tsconfig.tsbuildinfo
out
.eslintrc.js
wandb
target
third_party
archive
generated
bazel-stratis3
bazel-out
external
bazel-testlogs
.next
.nx
target
114 changes: 114 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
// https://eslint.org/docs/latest/rules/
// https://eslint.org/docs/latest/developer-guide/shareable-configs
// https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/src/configs/eslint-recommended.ts

// https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/naming-convention.md#enforce-that-interface-names-do-not-begin-with-an-i
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "prettier", "import"],
settings: {
"import/resolver": {
"typescript": { "alwaysTryTypes": true },
},
"react": {
"version": "detect"
},
},
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:import/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:react-hooks/recommended"
],
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
project: ["./tsconfig.json"],
extraFileExtensions: [".json", ".bazed"]
},
globals: {
__DEV__: false,
jasmine: false,
beforeAll: false,
afterAll: false,
beforeEach: false,
afterEach: false,
test: false,
expect: false,
describe: false,
jest: false,
it: false,
},
rules: {
"array-callback-return": "error",
"no-debugger": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/explicit-function-return-type": "error",
"@typescript-eslint/no-explicit-any": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-var-requires": "off",
"no-empty": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-inferrable-types": "off",
// 'react-hooks/exhaustive-deps': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-this-alias': 'off',
'no-async-promise-executor': 'off',
'react/no-unescaped-entities': 'off',
'react/display-name': 'off',
'prefer-const': 'off',
"@typescript-eslint/no-namespace": "off",
"import/order": [
"error",
{
"newlines-between": "always",
alphabetize: {
order: "asc",
caseInsensitive: true,
},
},
],
"no-constant-condition": "off",
"prettier/prettier": [
"error",
{
endOfLine: "auto",
},
],
// "import/no-relative-parent-imports": "error"
// ` "import/no-relative-parent-imports": [
// "error",
// {
// patterns: [
// {
// group: ['../*'],
// message: 'Usage of relative parent imports is not allowed.',
// }
// ],
// }
// ],`
// 'no-restricted-imports': ['error', {'patterns': ['..*']}],
// ban-types. allow {} empty object. ALLOW IT
// "@typescript-eslint/ban-types": [
// {
// types: {
// object: false,
// },
// },
// ],
},
overrides: [
{
files: ["*.tsx", "*.test.ts"],
rules: {
"@typescript-eslint/explicit-function-return-type": "off",
},
},
],
};
70 changes: 70 additions & 0 deletions .github/ci copy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: CI

on:
pull_request:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
build:
runs-on: ubuntu-20.04
env:
CARGO_TERM_COLOR: always

steps:
- name: Check out Git repository
uses: actions/checkout@v3
with:
access_token: ${{ github.token }}

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- uses: actions/cache@v3
name: Yarn cache
id: yarn-cache
continue-on-error: false
with:
path: |
node_modules
${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-

- name: Install Node.js dependencies
run: yarn install --prefer-offline --frozen-lockfile
env:
ADBLOCK: true

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
override: true

- name: Install Rust tools
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest

- name: Rust Cache
uses: Swatinem/rust-cache@v2
continue-on-error: false
with:
prefix-key: "rust-cache"

- name: Lint
run: cargo fmt --all -- --check
# && cargo clippy -- -D warnings

- name: Test
run: cargo nextest run
107 changes: 73 additions & 34 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,67 +4,106 @@ on:
pull_request:
push:
branches:
- main
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
env:
CARGO_TERM_COLOR: always
RUSTFLAGS:

jobs:
build:
runs-on: ubuntu-20.04
env:
CARGO_TERM_COLOR: always
runs-on: ubuntu-24.04

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Check out Git repository
uses: actions/checkout@v3

- uses: pnpm/action-setup@v4
with:
access_token: ${{ github.token }}
version: 10
run_install: false

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV

- uses: actions/cache@v3
name: Yarn cache
id: yarn-cache
continue-on-error: false
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: |
node_modules
${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-yarn-
${{ runner.os }}-pnpm-store-

- name: Install Node.js dependencies
run: yarn install --prefer-offline --frozen-lockfile
env:
ADBLOCK: true
run: |
pnpm install
npm install cross-env --global

- name: Install Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Upgrade Pip
run: |
python -m pip install --upgrade pip

- name: Install Python dependencies
run: |
pip install pytest 'numpy<2' pandas matplotlib scikit-learn maturin wheel requests tqdm plotly colorama

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
toolchain: "1.85.0"
components: rustfmt, clippy
override: true

- name: Install Rust tools
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest

- name: Rust Cache
uses: Swatinem/rust-cache@v2
continue-on-error: false
with:
prefix-key: "rust-cache"
- name: Toolchain debug
run: |
pnpm bazed --version
node --version
npm --version
pnpm --version
python --version
python3 --version
rustc --version
cargo --version
cargo fmt --version

- name: Prepare
run: |
mkdir -p target/nextest/default
ls -l

# - name: Lint
# run: |
# pnpm bazed run //:lint --verbose

- name: Lint
run: cargo fmt --all -- --check
# && cargo clippy -- -D warnings
- name: Build
run: |
pnpm bazed build //core --verbose
pnpm bazed build //content --verbose
pnpm bazed build //lib --verbose
# - name: Test
# run: |
# pnpm bazed run //pace/lib:test --verbose

- name: Test
run: cargo nextest run
# pnpm bazed run //pace/compiler/e2e:test --verbose
28 changes: 21 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
target
benchmarks/.data
benchmarks/.out
__pycache__
summary.png
node_modules
build
local
service_account.json
.data
.wandb
__pycache__
.out
.volumes
yarn-error.log
.queue-cache.json
.accounts.json
.dumps
.tmp
wandb
/bazel-*
target
.DS_Store
.ipynb_checkpoints
bazel_stuff
bazel_stuff,--verbose_failures
.env
/.cargo/registry
out
17 changes: 17 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
node_modules
build
tsconfig.tsbuildinfo
out
.eslintrc.js
wandb
target
third_party
archive
generated
bazel-stratis3
bazel-out
external
bazel-testlogs
.next
.nx
target
Loading
Loading