Objet : Developers list for StarPU
Archives de la liste
- From: Francisco Alecrim <alecrim@gmail.com>
- To: Samuel Thibault <samuel.thibault@inria.fr>, starpu-devel@lists.gforge.inria.fr
- Subject: Re: [Starpu-devel] [PATCH] examples audio fix
- Date: Fri, 16 Jun 2017 02:52:29 +0000
- Authentication-results: mail2-smtp-roc.national.inria.fr; spf=None smtp.pra=alecrim@gmail.com; spf=Pass smtp.mailfrom=alecrim@gmail.com; spf=None smtp.helo=postmaster@mail-wm0-f46.google.com
- Ironport-phdr: 9a23:t0fvJRXuhZGo10T+fsahAyHz/AbV8LGtZVwlr6E/grcLSJyIuqrYbBWEt8tkgFKBZ4jH8fUM07OQ6PG/HzRYqb+681k6OKRWUBEEjchE1ycBO+WiTXPBEfjxciYhF95DXlI2t1uyMExSBdqsLwaK+i764jEdAAjwOhRoLerpBIHSk9631+ev8JHPfglEnjSwbLdwIRmssQndqtQdjJd/JKo21hbHuGZDdf5MxWNvK1KTnhL86dm18ZV+7SleuO8v+tBZX6nicKs2UbJXDDI9M2Ao/8LrrgXMTRGO5nQHTGoblAdDDhXf4xH7WpfxtTb6tvZ41SKHM8D6Uaw4VDK/5KpwVhTmlDkIOCI48GHPi8x/kqRboA66pxdix4LYeZyZOOZicq/Ye94RWGhPUdtLVyFZDYy8YYkAAeoPM+hbsofzuUcBoACkCgWwHu7i0CNEimP00KA8zu8vERvG3AslH98WsHrUts/6NKEOXuC016nH0TLDZO5K1Df59ofHbgohofCJXbltdsfe000vGB3ZgVWKqIzlOiiY1usIs2eB7upgUfijhHIgqwF0uzWiwNonhIrRho8NyF3J+j91zJsrKdC4UkJ2YsCoHIFfuiybMYZ9X9ksTHtyuCkgz70LoZ67czYOyJQg3xPfbuaIc4mM4h76WueRJCt0iGtreL+whhu+60egyur7Vsm71FZFsDBJncXLtnAIzxDT686HReVh/kq52zuC2Brf5vxaLU00j6bWKIAtzqQ/m5cSqUjDGzX5mETyjK+YbEUk/e2o5vz9bbXiuJCTK5V0igD7Mqk1lcy/BP43MgkKX2SB5eu807jj8VXjQLpWlv02jrXZsJfCKMQAuq62GRVV0p4+6xqmEjipzsoYkmcDLF9efBKHjpPpO03VIPziAve/jVOskC1kx//YJLHhA5PNLmLCkLj7Z7p95VRcm0IPyoVk7pdJB7VJHPLyUEbssMCQWgQwNhG5x6D7CNR3354aRUqOBLWYOeXcqwnMrvkzKvOUecoZtSjwL9Ah5uXyljk2l1gHcqTv3J0NaXn+EO41DV+eZC/CmN4HGmYRtQ12Zejng0eDVHYHbnK/VLg94xk0DYunCcHIQYX70+/J5zuyApADPjMOMVuLC3q9MtzcA/o=
- List-archive: <http://lists.gforge.inria.fr/pipermail/starpu-devel/>
- List-id: "Developers list. For discussion of new features, code changes, etc." <starpu-devel.lists.gforge.inria.fr>
Hi
LDFLAGS was empty for me.
diff --git a/examples/audio/Makefile b/examples/audio/Makefile
index 8019697..37ce6bf 100644
--- a/examples/audio/Makefile
+++ b/examples/audio/Makefile
@@ -27,7 +27,7 @@ all: starpu_audio_processing
starpu_audio_processing.o: starpu_audio_processing.c
starpu_audio_processing: starpu_audio_processing.o
- $(CC) $(LDFLAGS) starpu_audio_processing.o -o starpu_audio_processing $(LIBS)
+ $(CC) $(CFLAGS) starpu_audio_processing.o -o starpu_audio_processing $(LIBS)
clean:
rm -f *.o
Em qui, 15 de jun de 2017 às 18:19, Samuel Thibault <samuel.thibault@inria.fr> escreveu:
Hello,
Francisco Alecrim, on jeu. 15 juin 2017 14:44:39 -0300, wrote:
> define nite as global variable because old scope was not reacheable by
> starpu_data_filter,
Mmm, I don't see how the old scope would not be reachable by
starpu_data_filter.
You're right! This change does not make sense.
I got the error below and ctags was pushing me to niter definition at "gcc-plugin/examples/stencil5.c". So I thought it was related with scope. I reverted the code and now I'm with the error again. Working on it. Thanks!
[starpu][_starpu_data_partition][assert failure] Partitioning data 0x5647bd05b9d0 in 0 piece does not make sense
starpu_audio_processing: ../../src/datawizard/filters.c:170: _starpu_data_partition: Assertion `nparts > 0' failed.
Aborted (core dumped)
I got the error below and ctags was pushing me to niter definition at "gcc-plugin/examples/stencil5.c". So I thought it was related with scope. I reverted the code and now I'm with the error again. Working on it. Thanks!
[starpu][_starpu_data_partition][assert failure] Partitioning data 0x5647bd05b9d0 in 0 piece does not make sense
starpu_audio_processing: ../../src/datawizard/filters.c:170: _starpu_data_partition: Assertion `nparts > 0' failed.
Aborted (core dumped)
> cublas fix
Indeed, thanks!
> and use CFLAGS variable on Makefile.
I didn't see that part in the patch?
LDFLAGS was empty for me.
diff --git a/examples/audio/Makefile b/examples/audio/Makefile
index 8019697..37ce6bf 100644
--- a/examples/audio/Makefile
+++ b/examples/audio/Makefile
@@ -27,7 +27,7 @@ all: starpu_audio_processing
starpu_audio_processing.o: starpu_audio_processing.c
starpu_audio_processing: starpu_audio_processing.o
- $(CC) $(LDFLAGS) starpu_audio_processing.o -o starpu_audio_processing $(LIBS)
+ $(CC) $(CFLAGS) starpu_audio_processing.o -o starpu_audio_processing $(LIBS)
clean:
rm -f *.o
Samuel
--
Francisco Keppler Silva Alecrim
- [Starpu-devel] [PATCH] examples audio fix - define nite as global variable because old scope was not reacheable by starpu_data_filter, cublas fix and use CFLAGS variable on Makefile., Francisco Alecrim, 15/06/2017
- Re: [Starpu-devel] [PATCH] examples audio fix, Samuel Thibault, 15/06/2017
- Re: [Starpu-devel] [PATCH] examples audio fix, Francisco Alecrim, 16/06/2017
- Re: [Starpu-devel] [PATCH] examples audio fix, Francisco Alecrim, 16/06/2017
- Re: [Starpu-devel] [PATCH] examples audio fix, Francisco Alecrim, 16/06/2017
- Re: [Starpu-devel] [PATCH] examples audio fix, Samuel Thibault, 15/06/2017
Archives gérées par MHonArc 2.6.19+.