Просмотр исходного кода

Added cholesky and lu without sched ctx

Andra Hugo лет назад: 14
Родитель
Сommit
bd01c14293
1 измененных файлов с 21 добавлено и 1 удалено
  1. 21 1
      examples/Makefile.am

+ 21 - 1
examples/Makefile.am

@@ -49,7 +49,8 @@ EXTRA_DIST = 					\
 	lu/xlu_implicit_pivot.c			\
 	lu/xlu_kernels.c			\
 	lu/lu_example.c				\
-	cholesky_and_lu/cholesky_and_lu.c				\
+	cholesky_and_lu/cholesky_and_lu.c					\
+	cholesky_and_lu_without_sched_ctx/cholesky_and_lu_without_sched_ctx.c 	\
 	incrementer/incrementer_kernels_opencl_kernel.cl 	\
 	basic_examples/variable_kernels_opencl_kernel.cl	\
 	matvecmult/matvecmult_kernel.cl				\
@@ -445,6 +446,25 @@ cholesky_and_lu_cholesky_and_lu_SOURCES =			\
 	common/blas.c
 endif
 
+###########################
+# Cholesky and Lu without sched ctx example #
+###########################
+if !NO_BLAS_LIB
+
+examplebin_PROGRAMS += 				\
+	cholesky_and_lu_without_sched_ctx/cholesky_and_lu_without_sched_ctx
+
+cholesky_and_lu_without_sched_ctx_cholesky_and_lu_without_sched_ctx_SOURCES =			\
+	cholesky_and_lu_without_sched_ctx/cholesky_and_lu_without_sched_ctx.c			\
+	cholesky_and_lu_without_sched_ctx/cholesky/cholesky_tile_tag.c		\
+	cholesky_and_lu_without_sched_ctx/cholesky/cholesky_models.c		\
+	cholesky_and_lu_without_sched_ctx/cholesky/cholesky_kernels.c		\
+	cholesky_and_lu_without_sched_ctx/lu/slu.c				\
+	cholesky_and_lu_without_sched_ctx/lu/slu_pivot.c				\
+	cholesky_and_lu_without_sched_ctx/lu/slu_kernels.c			\
+	common/blas.c
+endif
+
 ################
 # Heat example #
 ################