Mentions légales du service

Skip to content
Snippets Groups Projects
Commit dbf503b0 authored by LISITO Alycia's avatar LISITO Alycia
Browse files

changed wether into whether

parent 3bcf60a6
No related branches found
No related tags found
1 merge request!288Edited the commentaries in the testing_zcheck
......@@ -320,7 +320,7 @@ Finally some packages or also available for [[sec:ug:debian][Debian/Ubuntu]] and
* *CMAKE_INSTALL_PREFIX=path/to/your/install/dir*: where headers,
libraries, executables, etc, will be copied when invoking make
install
* *BUILD_SHARED_LIBS=ON|OFF*: indicate wether or not CMake has to
* *BUILD_SHARED_LIBS=ON|OFF*: indicates whether or not CMake has to
build Chameleon static (~OFF~) or shared (~ON~) libraries.
* *CMAKE_C_COMPILER=gcc|icc|...*: to choose the C compilers
if several exist in the environment
......
......@@ -115,7 +115,7 @@ cti_init( void *data_interface )
static void
cti_register_data_handle( starpu_data_handle_t handle,
int home_node,
unsigned int home_node,
void *data_interface )
{
starpu_cham_tile_interface_t *cham_tile_interface = (starpu_cham_tile_interface_t *) data_interface;
......@@ -292,11 +292,11 @@ cti_compare( void *data_interface_a, void *data_interface_b )
&& ( cham_tile_a->flttype == cham_tile_b->flttype );
}
static int
cti_alloc_compare(void *data_interface_a, void *data_interface_b)
{
starpu_cham_tile_interface_t *cham_tile_a = (starpu_cham_tile_interface_t *) data_interface_a;
starpu_cham_tile_interface_t *cham_tile_b = (starpu_cham_tile_interface_t *) data_interface_b;
/* static int */
/* cti_alloc_compare(void *data_interface_a, void *data_interface_b) */
/* { */
/* starpu_cham_tile_interface_t *cham_tile_a = (starpu_cham_tile_interface_t *) data_interface_a; */
/* starpu_cham_tile_interface_t *cham_tile_b = (starpu_cham_tile_interface_t *) data_interface_b; */
/* Two matrices are considered compatible if they have the same allocated size */
return ( cham_tile_a->allocsize == cham_tile_b->allocsize );
......
......@@ -8,7 +8,7 @@
# N: Number of columns of matrix B
# LDA: Leading dimension of matrix A
# LDB: Leading dimension of matrix B
# trans: Wether the matrix A is not tranposed, transposed or conjugate transposed (0: not transposed, 1: transposed, 2: conjugate transposed)
# trans: Whether the matrix A is not tranposed, transposed or conjugate transposed (0: not transposed, 1: transposed, 2: conjugate transposed)
# alpha: Scalar alpha
# beta: Scalar beta
......
......@@ -9,7 +9,7 @@
# K: Number of columns of matrix A and rows of Matrix B
# LDA: Leading dimension of matrix A
# LDB: Leading dimension of matrix B
# trans: Wether the system involves A (ChamNoTrans) or A^H *ChamTransConj)
# trans: Whether the system involves A (ChamNoTrans) or A^H *ChamTransConj)
# RH: Size of each subdomain when using RH
op = gels
......
......@@ -9,7 +9,7 @@
# K: Number of columns of matrix A and rows of Matrix B
# LDA: Leading dimension of matrix A
# LDB: Leading dimension of matrix B
# trans: Wether the system involves A (ChamNoTrans) or A^H *ChamTransConj). Currently only ChamNoTrans is supported.
# trans: Whether the system involves A (ChamNoTrans) or A^H *ChamTransConj). Currently only ChamNoTrans is supported.
# qra: Size of TS domain
# qrp: Size of high level tree for distributed mode
# llvl: Tree used for low level reduction insides nodes
......
......@@ -10,8 +10,8 @@
# LDA: Leading dimension of matrix A
# LDB: Leading dimension of matrix B
# LDC: Leading dimension of matrix C
# transA: Wether the matrix A is not tranposed, transposed or conjugate transposed (0: not transposed, 1: transposed, 2: conjugate transposed)
# transB: Wether the matrix B is not tranposed, transposed or conjugate transposed (0: not transposed, 1: transposed, 2: conjugate transposed)
# transA: Whether the matrix A is not tranposed, transposed or conjugate transposed (0: not transposed, 1: transposed, 2: conjugate transposed)
# transB: Whether the matrix B is not tranposed, transposed or conjugate transposed (0: not transposed, 1: transposed, 2: conjugate transposed)
# alpha: Scalar alpha
# beta: Scalar beta
......
......@@ -8,7 +8,7 @@
# N: Number of columns of matrix B
# LDA: Leading dimension of matrix A
# LDB: Leading dimension of matrix B
# trans: Wether the matrix A is not tranposed, transposed or conjugate transposed (0: not transposed, 1: transposed, 2: conjugate transposed)
# trans: Whether the matrix A is not tranposed, transposed or conjugate transposed (0: not transposed, 1: transposed, 2: conjugate transposed)
# uplo: matrix parte to be considered (0: Upper, 1: Lower)
# alpha: Scalar alpha
# beta: Scalar beta
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment