History log of /petsc/src/benchmarks/streams/SSEVersion.c (Results 51 – 74 of 74)
Revision Date Author Comments
# 94c9c6d3 04-Feb-2013 Karl Rupp <rupp@mcs.anl.gov>

Fixed style violations around else-keyword.

Hg-commit: d968d568a12dd2dcbf75c442cf3335bec0ab2047


# 6f2b61bc 26-Jan-2013 Karl Rupp <rupp@mcs.anl.gov>

Added uncrustify-script for src/. Uncrustified src/benchmarks.

Hg-commit: ae6cbb60850c98732ed9a7293e04d30948a9f830


# c5a46771 22-Jan-2013 Barry Smith <bsmith@mcs.anl.gov>

commit aftr merge

Hg-commit: 854807b200896ff0e3d6fb344a549ed1a2b93850


# 1147fc2a 21-Jan-2013 Karl Rupp <rupp@mcs.anl.gov>

Reformatting: 'No space after a '(' or before a ')''

Hg-commit: 797341a7bfba18bb97e6da668b36bad2e5977356


# 519f805a 20-Jan-2013 Karl Rupp <rupp@mcs.anl.gov>

Replaced '#ifdef' and '#ifndef' with '#if defined()' and '#if !defined()'.

Hg-commit: b3ebae8b626a88c2ac067fd7c3f04f229b43f305


# a6dfd86e 20-Jan-2013 Karl Rupp <rupp@mcs.anl.gov>

Fixed all violations of 'In function declaration the open bracket { should be on the next line, not on the same line as the function name and arguments'

Hg-commit: dcf94e40c4cd63bca3cd717b13d3be0d4e

Fixed all violations of 'In function declaration the open bracket { should be on the next line, not on the same line as the function name and arguments'

Hg-commit: dcf94e40c4cd63bca3cd717b13d3be0d4ebc15eb

show more ...


# db4deed7 19-Jan-2013 Karl Rupp <rupp@mcs.anl.gov>

Style improvements: braces around 'else', partial '){' -> ') {'

Hg-commit: adc31fe870178bcba56a29e10981c8f8716a006a


# a49bcb01 16-Jan-2013 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: 2d79dc481398816c8ada9ecbe169490cd1478c52


# 073bd88a 16-Jan-2013 Karl Rupp <rupp@mcs.anl.gov>

Removed \t in src/benchmarks/ and src/contrib/. Makefiles left untouched.

Hg-commit: 3995c88e59f8f05f673df8c3360587b725e92540


# b769355b 31-Dec-2012 Jed Brown <jed@59A2.org>

merge PetscSF implementation

Hg-commit: 98dccc99445b69cb7a66312149eb16fec359e294


# 5a4671ae 30-Dec-2012 Barry Smith <bsmith@mcs.anl.gov>

removed trailing spaces from all files

Hg-commit: 1cfa55059afe46c5145e0e830cd797b97216abfb


# 0f55b88d 03-Jul-2012 Satish Balay <balay@mcs.anl.gov>

backout all chmod stuff in bf971ba58125
[but keep diffs to src/mat/impls/aij/mpi/mpimatmatmult.c ]

Hg-commit: 4a812fc1f35496ce2717c7da9ef12ffabbd13258


# c0174eb7 03-Jul-2012 Mark F. Adams <mark.adams@columbia.edu>

removed a spurious call to MatSetBlockSize.

Hg-commit: bf971ba58125bd8cf7ceb2a9d0f5cdf27c27cc6a


# df17f0d5 18-Jul-2011 Kerry Stevens <kstevens@spetjhiong.com>

commit after merge from petsc-dev (MatMult_Add function)

Hg-commit: 95a831be5dc2ba75bb17311cad14d2f38977c0b7


# fa8572e2 18-Jun-2011 Barry Smith <bsmith@mcs.anl.gov>

removed printing of rms stuff from OpenMPVersion, added HAVE_NUMA to SSEVersion so that it can be built without NUMA

Hg-commit: f0ad0ca7fa4bad6e5c6cb1cb30ce8c142c16e55e


# d39137a2 12-Jan-2012 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: d540875a63b3c979c82b6a7fa7f062571e906d10


# 247e2d92 06-Jan-2012 Jed Brown <jed@59A2.org>

Mass revert file modes that were made executable in f6e61ee9c329

Hg-commit: 116d90d0b66125cee0db3e7351047057e756baf5


# 832f7384 01-Jan-2012 Matthew G Knepley <knepley@gmail.com>

Merge

Hg-commit: ee8d91ae0580d1d4fa92be38a18d40c838b9a257


# 14e519b0 31-Dec-2011 Mark F. Adams <mark.adams@columbia.edu>

changed MatMatMult to MatTranposeMatMult.

Hg-commit: f6e61ee9c329774cd5343eea1ee6b7432be17c3f


# ce2f17d1 10-May-2011 Dmitry Karpeev <karpeev@mcs.anl.gov>

Merge.

Hg-commit: 8ad722e18529293bde53db7f4fb83823cee61dc0


# d6651a8c 09-May-2011 Victor Minden <victorminden@gmail.com>

commit after merge

Hg-commit: a935ccf20f02d5d32e7e4e31e093474dd9731a2f


# dcd07f4f 09-May-2011 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: cd65c0daecf15ddfa806fd79009fb5a0e5d566bf


# 106b1c52 09-May-2011 Jed Brown <jed@59A2.org>

Place MPI_Barrier in the necessary places for the STREAM benchmarks.

Note that it is possible for the system to interrupt the process between
the call to MPI_Barrier and getting the current time. Th

Place MPI_Barrier in the necessary places for the STREAM benchmarks.

Note that it is possible for the system to interrupt the process between
the call to MPI_Barrier and getting the current time. This means that
scenarios like

MPI_Barrier(comm);
t1 = time()
work()
MPI_Barrier(comm);
elapsed = time() - t1;

may have each work() running concurrently, or they may run separately,
paired with other active processes on the system. If the other processes
do not have similar memory demands, the aggregate throughput can be
reported as anomalously high. Therefore it is necessary to bracket the
computation with MPI_Barrier.

Hg-commit: def515087559f3ce819b0b673d0ceabaa58d5a03

show more ...


# b8a1809b 09-May-2011 Jed Brown <jed@59A2.org>

Add SSE2 version of STREAM benchmark

Hg-commit: 99a6480f2b7e60a00d7680eb2027b554eae0e209


123