Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/simd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: simd

on:
push:
branches: [master]
pull_request:
paths:
- rust/simd/**
- .github/workflows/simd.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
rust-simd:
runs-on: ubuntu-24.04
container: ghcr.io/dfinity/icp-dev-env-rust:1.0.1
env:
ICP_CLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Deploy and test
working-directory: rust/simd
run: |
icp network start -d
icp deploy
bash test.sh
20 changes: 0 additions & 20 deletions rust/simd/.devcontainer/devcontainer.json

This file was deleted.

113 changes: 0 additions & 113 deletions rust/simd/BUILD.md

This file was deleted.

5 changes: 2 additions & 3 deletions rust/simd/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/simd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["mat_mat_mul"]
members = ["backend"]
resolver = "2"

[profile.release]
Expand Down
24 changes: 0 additions & 24 deletions rust/simd/Makefile

This file was deleted.

Loading
Loading