LinuxPPC-Dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: syokazuliao@yahoo.com.tw
To: Gunnar von Boehn <VONBOEHN@de.ibm.com>
Cc: linuxppc-dev@ozlabs.org, Michael Ellerman <ellerman@au1.ibm.com>,
	cbe-oss-dev@ozlabs.org, Arnd Bergmann <arnd@arndb.de>
Subject: Re: [Cbe-oss-dev] [RFC 0/3] powerpc: memory copy routines tweaked for Cell
Date: Thu, 23 Dec 2010 15:38:31 +0800 (CST)	[thread overview]
Message-ID: <735799.88939.qm@web74212.mail.tp2.yahoo.com> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 727 bytes --]

Hi everyone,
I'm a new Cell BE user, and my debug platform is YDL6.2 run on PS3.

I wrote two simple test programs that tests Mark Nelson's memcpy routines under
a number of conditions, and the test arrays are aligned on 128-byte boundaries.

Following explains my three files.
1. The main1.C is my first test program, it assigns two 16KB arrays.
2. The main2.C is my second test program, it assigns two 4KB arrays.
3. The test_result.TXT is my test result.

Therefore, I have three questions.
1. How to calculate the bandwidth (MB/s)?
2. Is my result or test way correct?
3. Why is the 4KB result different between main1.C and main2.C?

PS: Please use UltraEdit open my three flies.


      

[-- Attachment #1.2: Type: text/html, Size: 1565 bytes --]

[-- Attachment #2: main2.C --]
[-- Type: text/plain, Size: 1200 bytes --]

#include <stdlib.h>
#include <stdio.h>
#include <ppu_intrinsics.h>

extern void *memcpy(void *, const void *, size_t);

int main() {
	unsigned char *s, *d;
	register unsigned long long start, finish,  i;
	if(posix_memalign((void *)&s, 128, 4096)) {
		printf("failed\n");
		goto end;
	}
	for(i = 32, j = 0; i > 0; i--, j += 128) {		/* clear s from cache */
		__dcbf(s+j);
	}
	if(posix_memalign((void *)&d, 128, 4096)) {
		printf("failed\n");
		goto end;
	}
	for(i = 32, j = 0; i > 0; i--, j += 128) {		/* clear d from cache */
		__dcbf(s+j);
	}

	__dcbt(cpymem);		/* prefetch memcpy */
	__dcbt(cpymem+128);
	__dcbt(cpymem+256);
	__dcbt(cpymem+384);
	__dcbt(cpymem+512);
	__dcbt(cpymem+640);
	__dcbt(cpymem+768);
	__dcbt(cpymem+896);
	__dcbt(cpymem+1024);
	__dcbt(cpymem+1152);
	__dcbt(cpymem+1280);
	__dcbt(cpymem+1408);
	__dcbt(cpymem+1536);
	__dcbt(cpymem+1664);
	__dcbt(cpymem+1792);
	__dcbt(cpymem+1920);
	__dcbt(cpymem+2048);
	__dcbt(cpymem+2176);
	__dcbt(cpymem+2304);
	__dcbt(cpymem+2432);
	__sync();

	start = __mftb();
	memcpy(d, s, 4096);
	finish = __mftb();

	printf("%lld\n", finish - start);

	free(s);
	free(d);
end:
	return 0;
}

[-- Attachment #3: test_result.TXT --]
[-- Type: text/plain, Size: 442 bytes --]

Copy Memory-to-Memory, results are in ticks.

             16KB        4KB     2KB    1KB    512B     256B     128B    64B     32B     16B 
-----------------------------------------------------------------------------------------------------------------------------------
main1.C		2063~2466	   669~879	60~63	 33~36	 22~24	  19~21		17~21		17~19		15~17		15~16
main2.C							   110~114	60~62	 33~36	 21~24		19~21		17~18		17~18		15~16		15~16

[-- Attachment #4: test_result.TXT --]
[-- Type: text/plain, Size: 442 bytes --]

Copy Memory-to-Memory, results are in ticks.

             16KB        4KB     2KB    1KB    512B     256B     128B    64B     32B     16B 
-----------------------------------------------------------------------------------------------------------------------------------
main1.C		2063~2466	   669~879	60~63	 33~36	 22~24	  19~21		17~21		17~19		15~17		15~16
main2.C							   110~114	60~62	 33~36	 21~24		19~21		17~18		17~18		15~16		15~16

             reply	other threads:[~2010-12-23  9:25 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-23  7:38 syokazuliao [this message]
  -- strict thread matches above, loose matches on Subject: below --
2010-12-23  7:49 [Cbe-oss-dev] [RFC 0/3] powerpc: memory copy routines tweaked for Cell syokazuliao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=735799.88939.qm@web74212.mail.tp2.yahoo.com \
    --to=syokazuliao@yahoo.com.tw \
    --cc=VONBOEHN@de.ibm.com \
    --cc=arnd@arndb.de \
    --cc=cbe-oss-dev@ozlabs.org \
    --cc=ellerman@au1.ibm.com \
    --cc=linuxppc-dev@ozlabs.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox