I guess that depends on what machine it is running on, but here is a little test you can try:
// set window properties
SetWindowTitle( "memblock copy test" )
SetWindowSize( 1024, 768, 0 )
// set display properties
SetVirtualResolution( 1024, 768 )
SetOrientationAllowed( 1, 1, 1, 1 )
blocksize = 1000
CreateMemblock(1,blocksize)
for t = 2 to 1000
CopyMemblock(1,t,1,1,blocksize)
print ("Copied: "+str(t)+" memblocks")
Print( "FPS: " + str(ScreenFPS()) )
Sync()
next
do
print ("Copied: "+str(t)+" memblocks")
Print( "FPS: " + str(ScreenFPS()) )
Sync()
loop
Play with the value in blocksize to see if it affects your frame rate.