[CPU:Bugfix] Fix issue #4463 large weight offset overflow (#4742) #1498
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: macos | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 'feature/**' | |
| paths: | |
| - 'source/**' | |
| - 'express/**' | |
| - 'test/**' | |
| - '.github/workflows/macos.yml' | |
| pull_request: | |
| branches: [master] | |
| paths: | |
| - 'source/**' | |
| - 'express/**' | |
| - 'test/**' | |
| - '.github/workflows/macos.yml' | |
| concurrency: | |
| group: macos-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| macos_buil_test: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: build | |
| run: | | |
| mkdir build && cd build | |
| cmake .. -DMNN_BUILD_TEST=ON -DLLM_SUPPORT_VISION=true -DMNN_BUILD_OPENCV=true -DMNN_IMGCODECS=true -DMNN_LOW_MEMORY=true -DMNN_CPU_WEIGHT_DEQUANT_GEMM=true -DMNN_BUILD_LLM=true -DMNN_SUPPORT_TRANSFORMER_FUSE=true -DLLM_SUPPORT_AUDIO=true -DMNN_BUILD_AUDIO=true -DMNN_OPENCL=ON -DMNN_VULKAN=ON | |
| make -j4 | |
| - name: test | |
| run: cd build && ./run_test.out |