Browse Source

Merge remote-tracking branch 'meua/main'

tags/v0.2.4-rc
haixuanTao 2 years ago
parent
commit
0e02823d77
4 changed files with 770 additions and 837 deletions
  1. +2
    -2
      .github/ISSUE_TEMPLATE/bug_report.md
  2. +766
    -834
      Cargo.lock
  3. +1
    -0
      binaries/runtime/src/operator/mod.rs
  4. +1
    -1
      examples/python-dataflow/run.sh

+ 2
- 2
.github/ISSUE_TEMPLATE/bug_report.md View File

@@ -24,8 +24,8 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Environments (please complete the following information):**
- System info: [use `uname --all` on LInux]
- Dora version [use `dora --version` and `pip show dora-rs`]
- System info: [use `uname --all` on Linux]
- Dora version: [use `dora --version` and `pip show dora-rs`]

**Additional context**
Add any other context about the problem here.

+ 766
- 834
Cargo.lock
File diff suppressed because it is too large
View File


+ 1
- 0
binaries/runtime/src/operator/mod.rs View File

@@ -67,6 +67,7 @@ pub fn run_operator(
}

#[derive(Debug)]
#[allow(dead_code)]
pub enum OperatorEvent {
AllocateOutputSample {
len: usize,


+ 1
- 1
examples/python-dataflow/run.sh View File

@@ -3,6 +3,7 @@ set -e
python3 -m venv .env
. $(pwd)/.env/bin/activate
# Dev dependencies
pip install patchelf
pip install maturin
cd ../../apis/python/node
maturin develop
@@ -11,5 +12,4 @@ cd ../../../examples/python-dataflow
# Dependencies
pip install --upgrade pip
pip install -r requirements.txt

cargo run -p dora-daemon -- --run-dataflow dataflow_without_webcam.yml

Loading…
Cancel
Save