]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
add comment
authorZooko O'Whielacronx <zooko@zooko.com>
Wed, 24 Jan 2007 22:21:45 +0000 (15:21 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Wed, 24 Jan 2007 22:21:45 +0000 (15:21 -0700)
pyfec/fec/fec.c

index fcedb16ac2f78123735e140836e5cdfd82b854c7..441f3d0b35831c50e22ea0b03d22cc1f6d19cdce 100644 (file)
@@ -577,6 +577,7 @@ fec_encode_all(const fec_t* code, const gf*restrict const*restrict const src, gf
 }
 
 #if 0
+/* By turning the nested loop inside out, we might incur different cache usage and therefore go slower or faster.  However in practice I'm not able to detect a difference, since >90% of the time is spent in my Python test script anyway.  :-) */
 void
 fec_encode_all(const fec_t* code, const gf*restrict const*restrict const src, gf*restrict const*restrict const fecs, const unsigned char*restrict const share_ids, unsigned char num_share_ids, size_t sz) {
     for (unsigned j=0; j < code->k; j++) {