Skip to content

Commit

Permalink
bin: patched ncnn exectuables from upscayl's team
Browse files Browse the repository at this point in the history
Upscayl's team had just released a bunch of new ncnn binaries. Hence,
let's patch it.

This patch updates all ncnn exectuables from upscayl's team upstream.

Signed-off-by: (Holloway) Chew, Kean Ho <hollowaykeanho@gmail.com>
  • Loading branch information
hollowaykeanho committed Jan 2, 2024
1 parent 17b11c4 commit e1c6ce1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 3 deletions.
Binary file modified bin/linux-amd64
Binary file not shown.
Binary file modified bin/mac-amd64
Binary file not shown.
Binary file added bin/vcomp140.dll
Binary file not shown.
Binary file added bin/vcomp140d.dll
Binary file not shown.
Binary file modified bin/windows-amd64.exe
Binary file not shown.
13 changes: 10 additions & 3 deletions init/unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ __upscale_if_image() {
____exec_upscale_program "$source_file" "$output"
if [ $? -eq 0 ]; then
_print_status success "\n"
return 0
return 10
fi


Expand Down Expand Up @@ -795,9 +795,16 @@ _exec_program() {


__upscale_if_image
if [ $? -ne 0 ]; then
case $? in
10)
exit 0
;;
0)
;;
*)
exit 1
fi
;;
esac


__setup_video_workspace
Expand Down

0 comments on commit e1c6ce1

Please sign in to comment.