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
2 changes: 1 addition & 1 deletion .github/workflows/master-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup
run: source /home/hicr/.bashrc && meson setup build -Dbackends=hwloc,pthreads,mpi,lpf,nosv,boost,opencl -Dfrontends=channel,RPCEngine,tasking,objectStore -DbuildTests=true -DbuildExamples=true -DcompileWarningsAsErrors=true
run: source /home/hicr/.bashrc && meson setup build -Dbackends=hwloc,pthreads,mpi,lpf,nosv,boost,opencl,acl -Dfrontends=channel,RPCEngine,tasking,objectStore -DbuildTests=true -DbuildExamples=true -DcompileWarningsAsErrors=true

- name: Compile
run: source /home/hicr/.bashrc && meson compile -C build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-development-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ jobs:
docker run --name hicr --shm-size=1024M --privileged -v $PWD:/home/hicr/hicr -w /home/hicr/hicr -td ${{ env.DOCKERIMAGE }}:${{ inputs.arch }}-latest bash

- name: Setup
run: docker exec -u hicr hicr bash -c "meson setup build -Dbackends=hwloc,pthreads,mpi,lpf,nosv,boost,opencl -Dfrontends=channel,RPCEngine,tasking,objectStore -DbuildTests=true -DbuildExamples=true -DcompileWarningsAsErrors=true"
run: docker exec -u hicr hicr bash -c "meson setup build -Dbackends=hwloc,pthreads,mpi,lpf,nosv,boost,opencl,acl -Dfrontends=channel,RPCEngine,tasking,objectStore -DbuildTests=true -DbuildExamples=true -DcompileWarningsAsErrors=true"

- name: Compile
run: docker exec -u hicr hicr bash -c "meson compile -C build"
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ atlas_*
**/*.bin
**/*ubyte*
**/.venv
.cache
.cache
examples/neuralNetwork/proto/onnx.proto3.pb.*
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ build-acl:
- echo "$PATH"
- echo "Building..."
- mkdir build
- meson setup build -Dbackends=hwloc,pthreads,acl,boost -Dfrontends= -DbuildTests=true -DbuildExamples=true -DcompileWarningsAsErrors=true
- meson setup build -Dbackends=hwloc,pthreads,acl,boost -DbuildTests=true -DbuildExamples=true -DcompileWarningsAsErrors=true
- meson compile -C build
- echo "Running tests..."
- meson test -C build
Expand Down
2 changes: 1 addition & 1 deletion examples/neuralNetwork/proto/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
####### Creating ONNX Protobuf dependency
protoDep = dependency('protobuf', required: true, version: '29.3.0', modules: ['protobuf::libprotobuf'])
protoDep = dependency('protobuf', required: true, version: '>=29.3.0', modules: ['protobuf::libprotobuf'])

# if the cpp generated protobuf files do not exist run the script to create them
fs = import('fs')
Expand Down
Loading