Fix UB in resize-bilinear-nhwc.c: it's technically UB to dereference an unaligned pointer, and the indirect_input field was only guaranteed to be 4-aligned, not 8-aligned on 64-bit targets. In practice, this will only fail under UBSAN or similar tools, but aligning the indirect_input field properly is an easy way to avoid spurious failures under these tools. #69
Workflow file for this run
This file contains 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: Build and update caches | |
on: | |
pull_request: | |
branches: | |
- master | |
types: [closed] | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
if: ${{ github.event.pull_request.merged }} | |
uses: ./.github/workflows/build.yml | |
with: | |
run-tests: false | |
update-caches: true |