Home
last modified time | relevance | path

Searched full:matrix (Results 1 – 9 of 9) sorted by relevance

/cloud-hypervisor/.github/workflows/
H A Dintegration-x86-64.yaml12 matrix:
16 …me == 'pull_request' && !(matrix.runner == 'garm-jammy' && matrix.libc == 'gnu') && 'ubuntu-latest…
19 …if: ${{ github.event_name != 'pull_request' || (matrix.runner == 'garm-jammy' && matrix.libc == 'g…
24 …if: ${{ github.event_name != 'pull_request' || (matrix.runner == 'garm-jammy' && matrix.libc == 'g…
34 …if: ${{ github.event_name != 'pull_request' || (matrix.runner == 'garm-jammy' && matrix.libc == 'g…
37 …if: ${{ github.event_name != 'pull_request' || (matrix.runner == 'garm-jammy' && matrix.libc == 'g…
38 run: scripts/dev_cli.sh tests --unit --libc ${{ matrix.libc }}
40 …if: ${{ github.event_name != 'pull_request' || (matrix.runner == 'garm-jammy' && matrix.libc == 'g…
43 …if: ${{ github.event_name != 'pull_request' || (matrix.runner == 'garm-jammy' && matrix.libc == 'g…
45 run: scripts/dev_cli.sh tests --integration --libc ${{ matrix.libc }}
[all …]
H A Dquality.yaml11 continue-on-error: ${{ matrix.experimental }}
14 matrix:
36 - name: Install Rust toolchain (${{ matrix.rust }})
39 toolchain: ${{ matrix.rust }}
40 target: ${{ matrix.target }}
45 … if: ${{ github.event_name == 'pull_request' && matrix.target == 'x86_64-unknown-linux-gnu' }}
49 …; do git checkout $commit; cargo check --tests --examples --all --target=${{ matrix.target }}; done
57 toolchain: ${{ matrix.rust }}
58 target: ${{ matrix.target }}
66 toolchain: ${{ matrix.rust }}
[all …]
H A Drelease.yaml12 name: Release ${{ matrix.platform.target }}
15 matrix:
34 if: contains(matrix.platform.target, 'musl')
39 matrix.platform.target == 'x86_64-unknown-linux-gnu'
41 - name: Build ${{ matrix.platform.target }}
45 target: ${{ matrix.platform.target }}
46 args: ${{ matrix.platform.args }}
53 … cp target/${{ matrix.platform.target }}/release/cloud-hypervisor ./${{ matrix.platform.name_ch }}
54 … cp target/${{ matrix.platform.target }}/release/ch-remote ./${{ matrix.platform.name_ch_remote }}
59 name: Artifacts for ${{ matrix.platform.target }}
[all …]
H A Dpreview-riscv64.yaml13 matrix:
29 - name: Build ${{ matrix.module }} Module (kvm)
30 …run: /opt/scripts/exec-in-qemu.sh cargo rustc --locked -p ${{ matrix.module }} --no-default-featur…
32 - name: Clippy ${{ matrix.module }} Module (kvm)
33 …run: /opt/scripts/exec-in-qemu.sh cargo clippy --locked -p ${{ matrix.module }} --no-default-featu…
35 - name: Test ${{ matrix.module }} Module (kvm)
36 …run: /opt/scripts/exec-in-qemu.sh cargo test --locked -p ${{ matrix.module }} --no-default-feature…
H A Dfuzz-build.yaml12 matrix:
22 - name: Install Rust toolchain (${{ matrix.rust }})
25 toolchain: ${{ matrix.rust }}
26 target: ${{ matrix.target }}
H A Dformatting.yaml12 matrix:
23 - name: Install Rust toolchain (${{ matrix.rust }})
26 toolchain: ${{ matrix.rust }}
27 target: ${{ matrix.target }}
H A Dbuild.yaml13 matrix:
31 - name: Install Rust toolchain (${{ matrix.rust }})
34 toolchain: ${{ matrix.rust }}
35 target: ${{ matrix.target }}
68 run: cargo build --locked --all --release --target=${{ matrix.target }}
/cloud-hypervisor/docs/
H A Dcpu.md202 matrix operations (int and float dot products). The goal of the extension is to
/cloud-hypervisor/arch/src/aarch64/
H A Dfdt.rs1041 // Construct the distance matrix. in create_distance_map_node()
1049 // 4. distance-matrix should have entries in lexicographical ascending in create_distance_map_node()
1073 fdt.property_array_u32("distance-matrix", distance_matrix.as_ref())?; in create_distance_map_node()