apply patches

This commit is contained in:
openKylinBot 2022-05-14 03:36:38 +08:00
commit c7c8aa52e3
8 changed files with 14 additions and 13 deletions

View File

@ -47,6 +47,7 @@
#include <string.h>
#include <assert.h>
#include <time.h>
#include <mem_alloc.h>
#include <options.h>
#include <misc.h>
#include <epsilon.h>

View File

@ -47,6 +47,7 @@
#include <string.h>
#include <assert.h>
#include <time.h>
#include <mem_alloc.h>
#include <options.h>
#include <misc.h>
#include <epsilon.h>

View File

@ -48,6 +48,7 @@
#include <assert.h>
#include <errno.h>
#include <epsilon.h>
#include <mem_alloc.h>
#include <options.h>
#include <misc.h>
@ -418,11 +419,11 @@ static void action_encode_gs(int sock_fd, char *ip_addr, int port)
filter[filter_len] = 0;
/* Allocate memory (it will be released implicitly at exit) */
Y0 = (unsigned char *) xmalloc(block_size * block_size,
Y0 = (unsigned char *) xmalloc(block_size * block_size *
sizeof(unsigned char));
Y = (unsigned char **) eps_malloc_2D(block_size, block_size,
sizeof(unsigned char));
buf = (unsigned char *) xmalloc(bytes_per_block,
buf = (unsigned char *) xmalloc(bytes_per_block *
sizeof(unsigned char));
/* Process all incoming blocks */
@ -526,7 +527,7 @@ static void action_encode_tc(int sock_fd, char *ip_addr, int port)
RECV_VALUE_FROM_MASTER(&Cr_ratio);
/* Allocate memory (it will be released implicitly at exit) */
Y0 = (unsigned char *) xmalloc(block_size * block_size,
Y0 = (unsigned char *) xmalloc(block_size * block_size *
sizeof(unsigned char));
R = (unsigned char **) eps_malloc_2D(block_size, block_size,
sizeof(unsigned char));
@ -534,7 +535,7 @@ static void action_encode_tc(int sock_fd, char *ip_addr, int port)
sizeof(unsigned char));
B = (unsigned char **) eps_malloc_2D(block_size, block_size,
sizeof(unsigned char));
buf = (unsigned char *) xmalloc(bytes_per_block,
buf = (unsigned char *) xmalloc(bytes_per_block *
sizeof(unsigned char));
/* Process all incoming blocks */
@ -628,11 +629,11 @@ static void action_decode_gs(int sock_fd, char *ip_addr, int port)
RECV_VALUE_FROM_MASTER(&block_size);
/* Allocate memory (it will be released implicitly at exit) */
Y0 = (unsigned char *) xmalloc(block_size * block_size,
Y0 = (unsigned char *) xmalloc(block_size * block_size *
sizeof(unsigned char));
Y = (unsigned char **) eps_malloc_2D(block_size, block_size,
sizeof(unsigned char));
buf = (unsigned char *) xmalloc(buf_size,
buf = (unsigned char *) xmalloc(buf_size *
sizeof(unsigned char));
/* Process all incoming blocks */
@ -707,7 +708,7 @@ static void action_decode_tc(int sock_fd, char *ip_addr, int port)
RECV_VALUE_FROM_MASTER(&block_size);
/* Allocate memory (it will be released implicitly at exit) */
Y0 = (unsigned char *) xmalloc(block_size * block_size,
Y0 = (unsigned char *) xmalloc(block_size * block_size *
sizeof(unsigned char));
R = (unsigned char **) eps_malloc_2D(block_size, block_size,
sizeof(unsigned char));
@ -715,7 +716,7 @@ static void action_decode_tc(int sock_fd, char *ip_addr, int port)
sizeof(unsigned char));
B = (unsigned char **) eps_malloc_2D(block_size, block_size,
sizeof(unsigned char));
buf = (unsigned char *) xmalloc(buf_size,
buf = (unsigned char *) xmalloc(buf_size *
sizeof(unsigned char));
/* Process all incoming blocks */

View File

@ -31,6 +31,7 @@
#include <mpi.h>
#include <worker_mpi_node.h>
#include <epsilon.h>
#include <mem_alloc.h>
#include <misc.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -1,3 +1,3 @@
INCLUDES =
METASOURCES = AUTO
dist_noinst_DATA = lena.pgm nirvana.ppm gray_dot.pgm horizontal_rainbow.ppm horizontal_gradient.pgm red_dot.ppm vertical_gradient.pgm vertical_rainbow.ppm
dist_noinst_DATA = nirvana.ppm gray_dot.pgm horizontal_rainbow.ppm horizontal_gradient.pgm red_dot.ppm vertical_gradient.pgm vertical_rainbow.ppm

View File

@ -159,7 +159,7 @@ top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
INCLUDES =
METASOURCES = AUTO
dist_noinst_DATA = lena.pgm nirvana.ppm gray_dot.pgm horizontal_rainbow.ppm horizontal_gradient.pgm red_dot.ppm vertical_gradient.pgm vertical_rainbow.ppm
dist_noinst_DATA = nirvana.ppm gray_dot.pgm horizontal_rainbow.ppm horizontal_gradient.pgm red_dot.ppm vertical_gradient.pgm vertical_rainbow.ppm
all: all-am
.SUFFIXES:

View File

@ -79,7 +79,6 @@ Readonly my %TEST_IMAGES => (
min_Cb_psnr => 31.50,
min_Cr_psnr => 40.10,
},
'lena.pgm' => 53.20,
'nirvana.ppm' => {
min_Y_psnr => 55.20,
min_Cb_psnr => 44.50,

View File

@ -76,8 +76,6 @@ Readonly my $MPI_MACHINE_FILE =>
catfile( $Bin, q{..}, 'build', 'machines.MPICH' );
Readonly my %TEST_IMAGES => (
'lena.pgm' => 53,
'nirvana.ppm' => {
min_Y_psnr => 50,
min_Cb_psnr => 44,