├── Dockerfile ├── LICENSE ├── README.md ├── autoperf ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── __init__.py ├── __main__.py ├── actions.py ├── annotation │ ├── __init__.py │ ├── annotation.py │ ├── interface.py │ ├── parsing.py │ └── utils.py ├── autoperf.py ├── cluster.py ├── config.py ├── configs.py ├── counters.py ├── descriptions.py ├── docs │ ├── Makefile │ ├── make.bat │ └── source │ │ ├── autoperf.rst │ │ ├── conf.py │ │ ├── examples.rst │ │ ├── images │ │ ├── detect.png │ │ └── train.png │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── intro.rst │ │ ├── legacy.rst │ │ ├── modules.rst │ │ └── vm.rst ├── environment_ubuntu.yml ├── fsm │ ├── __init__.py │ └── machine.py ├── keras_autoencoder.py ├── plots.py ├── profiler │ ├── Makefile │ ├── README │ ├── finetime.c │ ├── finetime.h │ ├── libdefault.cpp │ ├── libfuncs.cpp │ ├── libfuncs.h │ ├── mm.hh │ ├── perfevent.h │ ├── perfpoint.cpp │ ├── perfpoint.h │ ├── recordentries.hh │ ├── report.h │ ├── threadmods.h │ ├── xdefines.h │ ├── xrun.h │ └── xthread.h ├── setup.py ├── tests │ ├── Default.mk │ ├── apps │ │ ├── Makefile │ │ ├── bodytrack │ │ │ ├── .mylog3.swp │ │ │ ├── AnnealingFactor.cpp │ │ │ ├── AnnealingFactor.h │ │ │ ├── AsyncIO.cpp │ │ │ ├── AsyncIO.h │ │ │ ├── BodyGeometry.cpp │ │ │ ├── BodyGeometry.h │ │ │ ├── BodyPose.cpp │ │ │ ├── BodyPose.h │ │ │ ├── CameraModel.cpp │ │ │ ├── CameraModel.h │ │ │ ├── CovarianceMatrix.cpp │ │ │ ├── CovarianceMatrix.h │ │ │ ├── DMatrix.h │ │ │ ├── FlexImageLib │ │ │ │ ├── BinaryImage.h │ │ │ │ ├── FlexColor.h │ │ │ │ ├── FlexDataExchange.h │ │ │ │ ├── FlexDefs.h │ │ │ │ ├── FlexDraw.h │ │ │ │ ├── FlexFilter.h │ │ │ │ ├── FlexIO.cpp │ │ │ │ ├── FlexIO.h │ │ │ │ ├── FlexImage.cpp │ │ │ │ ├── FlexImage.h │ │ │ │ ├── FlexImageStatus.h │ │ │ │ ├── FlexImageStore.h │ │ │ │ ├── FlexLib.h │ │ │ │ ├── FlexOperators.h │ │ │ │ ├── FlexThreshold.h │ │ │ │ └── FlexTransform.h │ │ │ ├── ImageMeasurements.cpp │ │ │ ├── ImageMeasurements.h │ │ │ ├── ImageProjection.cpp │ │ │ ├── ImageProjection.h │ │ │ ├── Makefile │ │ │ ├── ParticleFilter.h │ │ │ ├── ParticleFilterOMP.h │ │ │ ├── ParticleFilterPthread.h │ │ │ ├── ParticleFilterTBB.h │ │ │ ├── RandomGenerator.cpp │ │ │ ├── RandomGenerator.h │ │ │ ├── SmallVectors.h │ │ │ ├── TBBtypes.h │ │ │ ├── TrackingModel.cpp │ │ │ ├── TrackingModel.h │ │ │ ├── TrackingModelOMP.cpp │ │ │ ├── TrackingModelOMP.h │ │ │ ├── TrackingModelPthread.cpp │ │ │ ├── TrackingModelPthread.cpp.modified │ │ │ ├── TrackingModelPthread.h │ │ │ ├── TrackingModelTBB.cpp │ │ │ ├── TrackingModelTBB.h │ │ │ ├── Vector3.h │ │ │ ├── WorkPoolPthread.h │ │ │ ├── main.cpp │ │ │ ├── poses.txt │ │ │ ├── run.py │ │ │ ├── run_test.py │ │ │ ├── system.h │ │ │ └── threads │ │ │ │ ├── Barrier.cpp │ │ │ │ ├── Barrier.h │ │ │ │ ├── Condition.cpp │ │ │ │ ├── Condition.h │ │ │ │ ├── LockTypes.h │ │ │ │ ├── Makefile │ │ │ │ ├── Mutex.cpp │ │ │ │ ├── Mutex.h │ │ │ │ ├── RWLock.cpp │ │ │ │ ├── RWLock.h │ │ │ │ ├── SynchQueue.h │ │ │ │ ├── Thread.cpp │ │ │ │ ├── Thread.h │ │ │ │ ├── ThreadGroup.cpp │ │ │ │ ├── ThreadGroup.h │ │ │ │ ├── TicketDispenser.h │ │ │ │ ├── WorkerGroup.cpp │ │ │ │ ├── WorkerGroup.h │ │ │ │ ├── atomic │ │ │ │ ├── amd64 │ │ │ │ │ └── atomic.h │ │ │ │ ├── atomic.h │ │ │ │ ├── i386 │ │ │ │ │ └── atomic.h │ │ │ │ ├── ia64 │ │ │ │ │ └── atomic.h │ │ │ │ ├── powerpc │ │ │ │ │ ├── atomic.h │ │ │ │ │ └── cpufunc.h │ │ │ │ └── sparc │ │ │ │ │ ├── asi.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ └── cpufunc.h │ │ │ │ └── config.h │ │ ├── bodytrack_faster │ │ │ ├── .mylog3.swp │ │ │ ├── AnnealingFactor.cpp │ │ │ ├── AnnealingFactor.h │ │ │ ├── AsyncIO.cpp │ │ │ ├── AsyncIO.h │ │ │ ├── BodyGeometry.cpp │ │ │ ├── BodyGeometry.h │ │ │ ├── BodyPose.cpp │ │ │ ├── BodyPose.h │ │ │ ├── COUNTERS │ │ │ ├── CameraModel.cpp │ │ │ ├── CameraModel.h │ │ │ ├── CovarianceMatrix.cpp │ │ │ ├── CovarianceMatrix.h │ │ │ ├── DMatrix.h │ │ │ ├── FlexImageLib │ │ │ │ ├── BinaryImage.h │ │ │ │ ├── FlexColor.h │ │ │ │ ├── FlexDataExchange.h │ │ │ │ ├── FlexDefs.h │ │ │ │ ├── FlexDraw.h │ │ │ │ ├── FlexFilter.h │ │ │ │ ├── FlexIO.cpp │ │ │ │ ├── FlexIO.h │ │ │ │ ├── FlexImage.cpp │ │ │ │ ├── FlexImage.h │ │ │ │ ├── FlexImageStatus.h │ │ │ │ ├── FlexImageStore.h │ │ │ │ ├── FlexLib.h │ │ │ │ ├── FlexOperators.h │ │ │ │ ├── FlexThreshold.h │ │ │ │ └── FlexTransform.h │ │ │ ├── ImageMeasurements.cpp │ │ │ ├── ImageMeasurements.h │ │ │ ├── ImageProjection.cpp │ │ │ ├── ImageProjection.h │ │ │ ├── Makefile │ │ │ ├── ParticleFilter.h │ │ │ ├── ParticleFilterOMP.h │ │ │ ├── ParticleFilterPthread.h │ │ │ ├── ParticleFilterTBB.h │ │ │ ├── RandomGenerator.cpp │ │ │ ├── RandomGenerator.h │ │ │ ├── SmallVectors.h │ │ │ ├── TBBtypes.h │ │ │ ├── TrackingModel.cpp │ │ │ ├── TrackingModel.h │ │ │ ├── TrackingModelOMP.cpp │ │ │ ├── TrackingModelOMP.h │ │ │ ├── TrackingModelPthread.cpp │ │ │ ├── TrackingModelPthread.h │ │ │ ├── TrackingModelTBB.cpp │ │ │ ├── TrackingModelTBB.h │ │ │ ├── Vector3.h │ │ │ ├── WorkPoolPthread.h │ │ │ ├── main.cpp │ │ │ ├── poses.txt │ │ │ ├── run.py │ │ │ ├── run_test.py │ │ │ ├── system.h │ │ │ └── threads │ │ │ │ ├── Barrier.cpp │ │ │ │ ├── Barrier.h │ │ │ │ ├── Condition.cpp │ │ │ │ ├── Condition.h │ │ │ │ ├── LockTypes.h │ │ │ │ ├── Makefile │ │ │ │ ├── Mutex.cpp │ │ │ │ ├── Mutex.h │ │ │ │ ├── RWLock.cpp │ │ │ │ ├── RWLock.h │ │ │ │ ├── SynchQueue.h │ │ │ │ ├── Thread.cpp │ │ │ │ ├── Thread.h │ │ │ │ ├── ThreadGroup.cpp │ │ │ │ ├── ThreadGroup.h │ │ │ │ ├── TicketDispenser.h │ │ │ │ ├── WorkerGroup.cpp │ │ │ │ ├── WorkerGroup.h │ │ │ │ ├── atomic │ │ │ │ ├── amd64 │ │ │ │ │ └── atomic.h │ │ │ │ ├── atomic.h │ │ │ │ ├── i386 │ │ │ │ │ └── atomic.h │ │ │ │ ├── ia64 │ │ │ │ │ └── atomic.h │ │ │ │ ├── powerpc │ │ │ │ │ ├── atomic.h │ │ │ │ │ └── cpufunc.h │ │ │ │ └── sparc │ │ │ │ │ ├── asi.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ └── cpufunc.h │ │ │ │ └── config.h │ │ ├── canneal │ │ │ ├── AtomicPtr.h │ │ │ ├── Makefile │ │ │ ├── MersenneTwister.h │ │ │ ├── annealer_thread.cpp │ │ │ ├── annealer_thread.h │ │ │ ├── annealer_types.h │ │ │ ├── atomic │ │ │ │ ├── alpha │ │ │ │ │ └── atomic.h │ │ │ │ ├── amd64 │ │ │ │ │ └── atomic.h │ │ │ │ ├── atomic.h │ │ │ │ ├── i386 │ │ │ │ │ └── atomic.h │ │ │ │ ├── ia64 │ │ │ │ │ └── atomic.h │ │ │ │ ├── powerpc │ │ │ │ │ └── atomic.h │ │ │ │ └── sparc │ │ │ │ │ ├── asi.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ └── cpufunc.h │ │ │ ├── location_t.h │ │ │ ├── main.cpp │ │ │ ├── netlist.cpp │ │ │ ├── netlist.h │ │ │ ├── netlist_elem.cpp │ │ │ ├── netlist_elem.h │ │ │ ├── rng.cpp │ │ │ └── rng.h │ │ ├── dedup │ │ │ ├── Makefile │ │ │ ├── Makefile.parsec │ │ │ ├── binheap.c │ │ │ ├── binheap.h │ │ │ ├── config.h │ │ │ ├── debug.h │ │ │ ├── decoder.c │ │ │ ├── decoder.h │ │ │ ├── dedup.c │ │ │ ├── dedupdef.h │ │ │ ├── encoder.c │ │ │ ├── encoder.h │ │ │ ├── hashtable.c │ │ │ ├── hashtable.h │ │ │ ├── hashtable_private.h │ │ │ ├── include │ │ │ │ ├── openssl │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1_mac.h │ │ │ │ │ ├── asn1t.h │ │ │ │ │ ├── bio.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bn.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── des_old.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dso.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── fips.h │ │ │ │ │ ├── fips_rand.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── krb5_asn.h │ │ │ │ │ ├── kssl.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── md2.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── obj_mac.h │ │ │ │ │ ├── objects.h │ │ │ │ │ ├── ocsp.h │ │ │ │ │ ├── opensslconf.h │ │ │ │ │ ├── opensslv.h │ │ │ │ │ ├── ossl_typ.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pq_compat.h │ │ │ │ │ ├── pqueue.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl23.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── store.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── tmdiff.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── ui_compat.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ └── x509v3.h │ │ │ │ ├── zconf.h │ │ │ │ └── zlib.h │ │ │ ├── queue.c │ │ │ ├── queue.h │ │ │ ├── rabin.c │ │ │ ├── rabin.h │ │ │ ├── run_test.py │ │ │ ├── tree.c │ │ │ ├── tree.h │ │ │ ├── util.c │ │ │ └── util.h │ │ ├── dedup_faster │ │ │ ├── Makefile │ │ │ ├── Makefile.parsec │ │ │ ├── binheap.c │ │ │ ├── binheap.h │ │ │ ├── config.h │ │ │ ├── debug.h │ │ │ ├── decoder.c │ │ │ ├── decoder.h │ │ │ ├── dedup.c │ │ │ ├── dedupdef.h │ │ │ ├── encoder.c │ │ │ ├── encoder.h │ │ │ ├── hashtable.c │ │ │ ├── hashtable.h │ │ │ ├── hashtable_private.h │ │ │ ├── include │ │ │ │ ├── openssl │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1_mac.h │ │ │ │ │ ├── asn1t.h │ │ │ │ │ ├── bio.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bn.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── des_old.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dso.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── fips.h │ │ │ │ │ ├── fips_rand.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── krb5_asn.h │ │ │ │ │ ├── kssl.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── md2.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── obj_mac.h │ │ │ │ │ ├── objects.h │ │ │ │ │ ├── ocsp.h │ │ │ │ │ ├── opensslconf.h │ │ │ │ │ ├── opensslv.h │ │ │ │ │ ├── ossl_typ.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pq_compat.h │ │ │ │ │ ├── pqueue.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl23.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── store.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── tmdiff.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── ui_compat.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ └── x509v3.h │ │ │ │ ├── zconf.h │ │ │ │ └── zlib.h │ │ │ ├── queue.c │ │ │ ├── queue.h │ │ │ ├── rabin.c │ │ │ ├── rabin.h │ │ │ ├── run_test.py │ │ │ ├── tree.c │ │ │ ├── tree.h │ │ │ ├── util.c │ │ │ └── util.h │ │ ├── defines.mk │ │ ├── fluidanimate │ │ │ ├── Makefile │ │ │ ├── TEST_ARGS │ │ │ ├── TEST_ARGS.back │ │ │ ├── cmp.cpp │ │ │ ├── parsec_barrier.cpp │ │ │ ├── parsec_barrier.hpp │ │ │ ├── pthreads.cpp │ │ │ ├── run_test.py │ │ │ ├── serial.cpp │ │ │ └── tbb.cpp │ │ ├── histogram │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── TEST_ARGS │ │ │ ├── TRAIN_ARGS │ │ │ ├── histogram-pthread.c │ │ │ ├── histogram-seq.c │ │ │ ├── histogram.c │ │ │ ├── run.sh │ │ │ └── run_test.py │ │ ├── kmeans │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── kmeans-pthread.c │ │ │ ├── kmeans-pthread.c_bckup │ │ │ ├── kmeans-seq.c │ │ │ └── kmeans.c │ │ ├── linear_regression │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── TEST_ARGS │ │ │ ├── linear_regression-pthread.c │ │ │ ├── linear_regression-seq.c │ │ │ ├── linear_regression.c │ │ │ └── run_test.py │ │ ├── reverse_index │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── TEST_ARGS │ │ │ ├── reverseindex-pthread.c │ │ │ ├── reverseindex-pthread.c.back │ │ │ ├── reverseindex-seq.c │ │ │ ├── reverseindex.c │ │ │ ├── run_test.py │ │ │ └── stddefines.h │ │ └── test │ │ │ ├── Makefile │ │ │ ├── do_loops.c │ │ │ ├── dummy.c │ │ │ └── test.c │ ├── include │ │ ├── MapReduceScheduler.h │ │ ├── map_reduce.h │ │ ├── stddefines.h │ │ └── stddefines_old.h │ ├── kernels │ │ ├── defines.mk │ │ ├── pdotproduct │ │ │ ├── COUNTERS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── pdotproduct.c │ │ │ ├── run_profiler.py │ │ │ └── run_test.py │ │ ├── pmatrixcompare │ │ │ ├── Makefile │ │ │ ├── pmatrixcompare-perfpoint │ │ │ ├── pmatrixcompare-pthread │ │ │ ├── pmatrixcompare.c │ │ │ └── run_test.py │ │ ├── pmatrixmult │ │ │ ├── Makefile │ │ │ ├── pmatrixmult-pthread │ │ │ ├── pmatrixmult.c │ │ │ └── run_test.py │ │ ├── psumscalar │ │ │ ├── Makefile │ │ │ ├── psumscalar-perfpoint │ │ │ ├── psumscalar-pthread │ │ │ ├── psumscalar.c │ │ │ └── run_test.py │ │ └── psumvector │ │ │ ├── Makefile │ │ │ ├── psumvector-perfpoint │ │ │ ├── psumvector-pthread │ │ │ ├── psumvector.c │ │ │ └── run_test.py │ └── real_apps │ │ ├── boost_false_sharing │ │ ├── Makefile │ │ └── false_sharing.cpp │ │ └── diff_util.py └── utils.py ├── docs ├── Makefile ├── make.bat └── source │ ├── autoperf.rst │ ├── conf.py │ ├── examples.rst │ ├── images │ ├── detect.png │ └── train.png │ ├── index.rst │ ├── installation.rst │ ├── intro.rst │ ├── legacy.rst │ ├── modules.rst │ └── vm.rst ├── environment_ubuntu.yml ├── profiler ├── Makefile ├── README ├── finetime.c ├── finetime.h ├── libdefault.cpp ├── libfuncs.cpp ├── libfuncs.h ├── mm.hh ├── perfevent.h ├── perfpoint.cpp ├── perfpoint.h ├── recordentries.hh ├── report.h ├── scripts │ ├── COUNTERS │ └── run_profiler.py ├── threadmods.h ├── xdefines.h ├── xrun.h └── xthread.h ├── setup.py └── tests ├── Default.mk ├── apps ├── Makefile ├── bodytrack │ ├── .mylog3.swp │ ├── AnnealingFactor.cpp │ ├── AnnealingFactor.h │ ├── AsyncIO.cpp │ ├── AsyncIO.h │ ├── BodyGeometry.cpp │ ├── BodyGeometry.h │ ├── BodyPose.cpp │ ├── BodyPose.h │ ├── CameraModel.cpp │ ├── CameraModel.h │ ├── CovarianceMatrix.cpp │ ├── CovarianceMatrix.h │ ├── DMatrix.h │ ├── FlexImageLib │ │ ├── BinaryImage.h │ │ ├── FlexColor.h │ │ ├── FlexDataExchange.h │ │ ├── FlexDefs.h │ │ ├── FlexDraw.h │ │ ├── FlexFilter.h │ │ ├── FlexIO.cpp │ │ ├── FlexIO.h │ │ ├── FlexImage.cpp │ │ ├── FlexImage.h │ │ ├── FlexImageStatus.h │ │ ├── FlexImageStore.h │ │ ├── FlexLib.h │ │ ├── FlexOperators.h │ │ ├── FlexThreshold.h │ │ └── FlexTransform.h │ ├── ImageMeasurements.cpp │ ├── ImageMeasurements.h │ ├── ImageProjection.cpp │ ├── ImageProjection.h │ ├── Makefile │ ├── ParticleFilter.h │ ├── ParticleFilterOMP.h │ ├── ParticleFilterPthread.h │ ├── ParticleFilterTBB.h │ ├── RandomGenerator.cpp │ ├── RandomGenerator.h │ ├── SmallVectors.h │ ├── TBBtypes.h │ ├── TrackingModel.cpp │ ├── TrackingModel.h │ ├── TrackingModelOMP.cpp │ ├── TrackingModelOMP.h │ ├── TrackingModelPthread.cpp │ ├── TrackingModelPthread.cpp.modified │ ├── TrackingModelPthread.h │ ├── TrackingModelTBB.cpp │ ├── TrackingModelTBB.h │ ├── Vector3.h │ ├── WorkPoolPthread.h │ ├── lib │ │ ├── libflex.a │ │ ├── libflex.la │ │ ├── libthreads.a │ │ └── libthreads.la │ ├── main.cpp │ ├── poses.txt │ ├── run.py │ ├── run_test.py │ ├── system.h │ └── threads │ │ ├── Barrier.cpp │ │ ├── Barrier.h │ │ ├── Condition.cpp │ │ ├── Condition.h │ │ ├── LockTypes.h │ │ ├── Makefile │ │ ├── Mutex.cpp │ │ ├── Mutex.h │ │ ├── RWLock.cpp │ │ ├── RWLock.h │ │ ├── SynchQueue.h │ │ ├── Thread.cpp │ │ ├── Thread.h │ │ ├── ThreadGroup.cpp │ │ ├── ThreadGroup.h │ │ ├── TicketDispenser.h │ │ ├── WorkerGroup.cpp │ │ ├── WorkerGroup.h │ │ ├── atomic │ │ ├── amd64 │ │ │ └── atomic.h │ │ ├── atomic.h │ │ ├── i386 │ │ │ └── atomic.h │ │ ├── ia64 │ │ │ └── atomic.h │ │ ├── powerpc │ │ │ ├── atomic.h │ │ │ └── cpufunc.h │ │ └── sparc │ │ │ ├── asi.h │ │ │ ├── atomic.h │ │ │ └── cpufunc.h │ │ ├── config.h │ │ └── libthreads.la ├── bodytrack_faster │ ├── .mylog3.swp │ ├── AnnealingFactor.cpp │ ├── AnnealingFactor.h │ ├── AsyncIO.cpp │ ├── AsyncIO.h │ ├── BodyGeometry.cpp │ ├── BodyGeometry.h │ ├── BodyPose.cpp │ ├── BodyPose.h │ ├── COUNTERS │ ├── CameraModel.cpp │ ├── CameraModel.h │ ├── CovarianceMatrix.cpp │ ├── CovarianceMatrix.h │ ├── DMatrix.h │ ├── FlexImageLib │ │ ├── BinaryImage.h │ │ ├── FlexColor.h │ │ ├── FlexDataExchange.h │ │ ├── FlexDefs.h │ │ ├── FlexDraw.h │ │ ├── FlexFilter.h │ │ ├── FlexIO.cpp │ │ ├── FlexIO.h │ │ ├── FlexImage.cpp │ │ ├── FlexImage.h │ │ ├── FlexImageStatus.h │ │ ├── FlexImageStore.h │ │ ├── FlexLib.h │ │ ├── FlexOperators.h │ │ ├── FlexThreshold.h │ │ └── FlexTransform.h │ ├── ImageMeasurements.cpp │ ├── ImageMeasurements.h │ ├── ImageProjection.cpp │ ├── ImageProjection.h │ ├── Makefile │ ├── ParticleFilter.h │ ├── ParticleFilterOMP.h │ ├── ParticleFilterPthread.h │ ├── ParticleFilterTBB.h │ ├── RandomGenerator.cpp │ ├── RandomGenerator.h │ ├── SmallVectors.h │ ├── TBBtypes.h │ ├── TrackingModel.cpp │ ├── TrackingModel.h │ ├── TrackingModelOMP.cpp │ ├── TrackingModelOMP.h │ ├── TrackingModelPthread.cpp │ ├── TrackingModelPthread.h │ ├── TrackingModelTBB.cpp │ ├── TrackingModelTBB.h │ ├── Vector3.h │ ├── WorkPoolPthread.h │ ├── lib │ │ ├── libflex.a │ │ ├── libflex.la │ │ ├── libthreads.a │ │ └── libthreads.la │ ├── main.cpp │ ├── poses.txt │ ├── run.py │ ├── run_test.py │ ├── system.h │ └── threads │ │ ├── Barrier.cpp │ │ ├── Barrier.h │ │ ├── Condition.cpp │ │ ├── Condition.h │ │ ├── LockTypes.h │ │ ├── Makefile │ │ ├── Mutex.cpp │ │ ├── Mutex.h │ │ ├── RWLock.cpp │ │ ├── RWLock.h │ │ ├── SynchQueue.h │ │ ├── Thread.cpp │ │ ├── Thread.h │ │ ├── ThreadGroup.cpp │ │ ├── ThreadGroup.h │ │ ├── TicketDispenser.h │ │ ├── WorkerGroup.cpp │ │ ├── WorkerGroup.h │ │ ├── atomic │ │ ├── amd64 │ │ │ └── atomic.h │ │ ├── atomic.h │ │ ├── i386 │ │ │ └── atomic.h │ │ ├── ia64 │ │ │ └── atomic.h │ │ ├── powerpc │ │ │ ├── atomic.h │ │ │ └── cpufunc.h │ │ └── sparc │ │ │ ├── asi.h │ │ │ ├── atomic.h │ │ │ └── cpufunc.h │ │ ├── config.h │ │ └── libthreads.la ├── canneal │ ├── AtomicPtr.h │ ├── Makefile │ ├── MersenneTwister.h │ ├── annealer_thread.cpp │ ├── annealer_thread.h │ ├── annealer_types.h │ ├── atomic │ │ ├── alpha │ │ │ └── atomic.h │ │ ├── amd64 │ │ │ └── atomic.h │ │ ├── atomic.h │ │ ├── i386 │ │ │ └── atomic.h │ │ ├── ia64 │ │ │ └── atomic.h │ │ ├── powerpc │ │ │ └── atomic.h │ │ └── sparc │ │ │ ├── asi.h │ │ │ ├── atomic.h │ │ │ └── cpufunc.h │ ├── location_t.h │ ├── main.cpp │ ├── netlist.cpp │ ├── netlist.h │ ├── netlist_elem.cpp │ ├── netlist_elem.h │ ├── rng.cpp │ └── rng.h ├── dedup │ ├── Makefile │ ├── Makefile.parsec │ ├── binheap.c │ ├── binheap.h │ ├── config.h │ ├── debug.h │ ├── decoder.c │ ├── decoder.h │ ├── dedup.c │ ├── dedupdef.h │ ├── encoder.c │ ├── encoder.h │ ├── hashtable.c │ ├── hashtable.h │ ├── hashtable_private.h │ ├── include │ │ ├── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── cast.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── fips.h │ │ │ ├── fips_rand.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pq_compat.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── sha.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── store.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── tmdiff.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ │ ├── zconf.h │ │ └── zlib.h │ ├── lib │ │ ├── fips_premain.c │ │ ├── fips_premain.c.sha1 │ │ ├── libcrypto.a │ │ ├── libssl.a │ │ ├── libz.a │ │ └── pkgconfig │ │ │ ├── libcrypto.pc │ │ │ ├── libssl.pc │ │ │ └── openssl.pc │ ├── queue.c │ ├── queue.h │ ├── rabin.c │ ├── rabin.h │ ├── run_test.py │ ├── tree.c │ ├── tree.h │ ├── util.c │ └── util.h ├── dedup_faster │ ├── Makefile │ ├── Makefile.parsec │ ├── binheap.c │ ├── binheap.h │ ├── config.h │ ├── debug.h │ ├── decoder.c │ ├── decoder.h │ ├── dedup.c │ ├── dedupdef.h │ ├── encoder.c │ ├── encoder.h │ ├── hashtable.c │ ├── hashtable.h │ ├── hashtable_private.h │ ├── include │ │ ├── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── cast.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── fips.h │ │ │ ├── fips_rand.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pq_compat.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── sha.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── store.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── tmdiff.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ │ ├── zconf.h │ │ └── zlib.h │ ├── lib │ │ ├── fips_premain.c │ │ ├── fips_premain.c.sha1 │ │ ├── libcrypto.a │ │ ├── libssl.a │ │ ├── libz.a │ │ └── pkgconfig │ │ │ ├── libcrypto.pc │ │ │ ├── libssl.pc │ │ │ └── openssl.pc │ ├── queue.c │ ├── queue.h │ ├── rabin.c │ ├── rabin.h │ ├── run_test.py │ ├── tree.c │ ├── tree.h │ ├── util.c │ └── util.h ├── defines.mk ├── fluidanimate │ ├── Makefile │ ├── TEST_ARGS │ ├── TEST_ARGS.back │ ├── cmp.cpp │ ├── lib │ │ ├── libMagick.a │ │ ├── libWand.a │ │ ├── libgsl.a │ │ ├── libgslcblas.a │ │ └── libjpeg.a │ ├── parsec_barrier.cpp │ ├── parsec_barrier.hpp │ ├── pthreads.cpp │ ├── run_test.py │ ├── serial.cpp │ └── tbb.cpp ├── histogram │ ├── Makefile │ ├── README │ ├── TEST_ARGS │ ├── TRAIN_ARGS │ ├── histogram-pthread.c │ ├── histogram-seq.c │ ├── histogram.c │ ├── run.sh │ └── run_test.py ├── kmeans │ ├── Makefile │ ├── README │ ├── kmeans-pthread.c │ ├── kmeans-pthread.c_bckup │ ├── kmeans-seq.c │ └── kmeans.c ├── linear_regression │ ├── Makefile │ ├── README │ ├── TEST_ARGS │ ├── linear_regression-pthread.c │ ├── linear_regression-seq.c │ ├── linear_regression.c │ ├── obj │ │ └── linear_regression-pthread.o │ └── run_test.py ├── reverse_index │ ├── Makefile │ ├── README │ ├── TEST_ARGS │ ├── anomalous_root.out │ ├── reverseindex-pthread.c │ ├── reverseindex-pthread.c.back │ ├── reverseindex-seq.c │ ├── reverseindex.c │ ├── run_test.py │ └── stddefines.h └── test │ ├── Makefile │ ├── do_loops.c │ ├── dummy.c │ └── test.c ├── include ├── MapReduceScheduler.h ├── map_reduce.h ├── stddefines.h └── stddefines_old.h ├── kernels ├── defines.mk ├── pdotproduct │ ├── COUNTERS │ ├── Makefile │ ├── README │ ├── pdotproduct.c │ ├── run_profiler.py │ └── run_test.py ├── pmatrixcompare │ ├── Makefile │ ├── pmatrixcompare-perfpoint │ ├── pmatrixcompare-pthread │ ├── pmatrixcompare.c │ └── run_test.py ├── pmatrixmult │ ├── Makefile │ ├── obj │ │ ├── pmatrixmult-perfpoint.o │ │ └── pmatrixmult-pthread.o │ ├── pmatrixmult-perfpoint │ ├── pmatrixmult-pthread │ ├── pmatrixmult.c │ └── run_test.py ├── psumscalar │ ├── Makefile │ ├── psumscalar-perfpoint │ ├── psumscalar-pthread │ ├── psumscalar.c │ └── run_test.py └── psumvector │ ├── Makefile │ ├── psumvector-perfpoint │ ├── psumvector-pthread │ ├── psumvector.c │ └── run_test.py └── real_apps ├── boost_false_sharing ├── Makefile └── false_sharing.cpp └── diff_util.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/README.md -------------------------------------------------------------------------------- /autoperf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/.gitignore -------------------------------------------------------------------------------- /autoperf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/Dockerfile -------------------------------------------------------------------------------- /autoperf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/LICENSE -------------------------------------------------------------------------------- /autoperf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/README.md -------------------------------------------------------------------------------- /autoperf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/__init__.py -------------------------------------------------------------------------------- /autoperf/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/__main__.py -------------------------------------------------------------------------------- /autoperf/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/actions.py -------------------------------------------------------------------------------- /autoperf/annotation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoperf/annotation/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/annotation/annotation.py -------------------------------------------------------------------------------- /autoperf/annotation/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/annotation/interface.py -------------------------------------------------------------------------------- /autoperf/annotation/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/annotation/parsing.py -------------------------------------------------------------------------------- /autoperf/annotation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/annotation/utils.py -------------------------------------------------------------------------------- /autoperf/autoperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/autoperf.py -------------------------------------------------------------------------------- /autoperf/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/cluster.py -------------------------------------------------------------------------------- /autoperf/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/config.py -------------------------------------------------------------------------------- /autoperf/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/configs.py -------------------------------------------------------------------------------- /autoperf/counters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/counters.py -------------------------------------------------------------------------------- /autoperf/descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/descriptions.py -------------------------------------------------------------------------------- /autoperf/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/Makefile -------------------------------------------------------------------------------- /autoperf/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/make.bat -------------------------------------------------------------------------------- /autoperf/docs/source/autoperf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/source/autoperf.rst -------------------------------------------------------------------------------- /autoperf/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/source/conf.py -------------------------------------------------------------------------------- /autoperf/docs/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/source/examples.rst -------------------------------------------------------------------------------- /autoperf/docs/source/images/detect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/source/images/detect.png -------------------------------------------------------------------------------- /autoperf/docs/source/images/train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/source/images/train.png -------------------------------------------------------------------------------- /autoperf/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/source/index.rst -------------------------------------------------------------------------------- /autoperf/docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/source/installation.rst -------------------------------------------------------------------------------- /autoperf/docs/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/source/intro.rst -------------------------------------------------------------------------------- /autoperf/docs/source/legacy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/source/legacy.rst -------------------------------------------------------------------------------- /autoperf/docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/source/modules.rst -------------------------------------------------------------------------------- /autoperf/docs/source/vm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/docs/source/vm.rst -------------------------------------------------------------------------------- /autoperf/environment_ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/environment_ubuntu.yml -------------------------------------------------------------------------------- /autoperf/fsm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoperf/fsm/machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/fsm/machine.py -------------------------------------------------------------------------------- /autoperf/keras_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/keras_autoencoder.py -------------------------------------------------------------------------------- /autoperf/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/plots.py -------------------------------------------------------------------------------- /autoperf/profiler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/Makefile -------------------------------------------------------------------------------- /autoperf/profiler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/README -------------------------------------------------------------------------------- /autoperf/profiler/finetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/finetime.c -------------------------------------------------------------------------------- /autoperf/profiler/finetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/finetime.h -------------------------------------------------------------------------------- /autoperf/profiler/libdefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/libdefault.cpp -------------------------------------------------------------------------------- /autoperf/profiler/libfuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/libfuncs.cpp -------------------------------------------------------------------------------- /autoperf/profiler/libfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/libfuncs.h -------------------------------------------------------------------------------- /autoperf/profiler/mm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/mm.hh -------------------------------------------------------------------------------- /autoperf/profiler/perfevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/perfevent.h -------------------------------------------------------------------------------- /autoperf/profiler/perfpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/perfpoint.cpp -------------------------------------------------------------------------------- /autoperf/profiler/perfpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/perfpoint.h -------------------------------------------------------------------------------- /autoperf/profiler/recordentries.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/recordentries.hh -------------------------------------------------------------------------------- /autoperf/profiler/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/report.h -------------------------------------------------------------------------------- /autoperf/profiler/threadmods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/threadmods.h -------------------------------------------------------------------------------- /autoperf/profiler/xdefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/xdefines.h -------------------------------------------------------------------------------- /autoperf/profiler/xrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/xrun.h -------------------------------------------------------------------------------- /autoperf/profiler/xthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/profiler/xthread.h -------------------------------------------------------------------------------- /autoperf/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/setup.py -------------------------------------------------------------------------------- /autoperf/tests/Default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/Default.mk -------------------------------------------------------------------------------- /autoperf/tests/apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/.mylog3.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/.mylog3.swp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/AnnealingFactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/AnnealingFactor.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/AnnealingFactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/AnnealingFactor.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/AsyncIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/AsyncIO.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/AsyncIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/AsyncIO.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/BodyGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/BodyGeometry.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/BodyGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/BodyGeometry.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/BodyPose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/BodyPose.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/BodyPose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/BodyPose.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/CameraModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/CameraModel.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/CameraModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/CameraModel.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/CovarianceMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/CovarianceMatrix.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/CovarianceMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/CovarianceMatrix.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/DMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/DMatrix.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/FlexImageLib/FlexIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/FlexImageLib/FlexIO.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/ImageMeasurements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/ImageMeasurements.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/ImageMeasurements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/ImageMeasurements.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/ImageProjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/ImageProjection.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/ImageProjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/ImageProjection.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/ParticleFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/ParticleFilter.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/ParticleFilterOMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/ParticleFilterOMP.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/ParticleFilterTBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/ParticleFilterTBB.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/RandomGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/RandomGenerator.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/RandomGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/RandomGenerator.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/SmallVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/SmallVectors.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/TBBtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/TBBtypes.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/TrackingModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/TrackingModel.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/TrackingModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/TrackingModel.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/TrackingModelOMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/TrackingModelOMP.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/TrackingModelOMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/TrackingModelOMP.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/TrackingModelTBB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/TrackingModelTBB.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/TrackingModelTBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/TrackingModelTBB.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/Vector3.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/WorkPoolPthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/WorkPoolPthread.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/main.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/poses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/poses.txt -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/run.py -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/system.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/Barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/Barrier.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/Barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/Barrier.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/Condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/Condition.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/Condition.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/LockTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/LockTypes.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/Mutex.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/Mutex.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/RWLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/RWLock.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/RWLock.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/SynchQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/SynchQueue.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/Thread.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/Thread.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/ThreadGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/ThreadGroup.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/WorkerGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/WorkerGroup.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack/threads/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack/threads/config.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/.mylog3.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/.mylog3.swp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/AsyncIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/AsyncIO.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/AsyncIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/AsyncIO.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/BodyGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/BodyGeometry.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/BodyPose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/BodyPose.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/BodyPose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/BodyPose.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/COUNTERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/COUNTERS -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/CameraModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/CameraModel.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/DMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/DMatrix.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/SmallVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/SmallVectors.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/TBBtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/TBBtypes.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/Vector3.h -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/main.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/poses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/poses.txt -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/run.py -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/apps/bodytrack_faster/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/bodytrack_faster/system.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/AtomicPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/AtomicPtr.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/MersenneTwister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/MersenneTwister.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/annealer_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/annealer_thread.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/annealer_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/annealer_thread.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/annealer_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/annealer_types.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/atomic/alpha/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/atomic/alpha/atomic.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/atomic/amd64/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/atomic/amd64/atomic.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/atomic/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/atomic/atomic.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/atomic/i386/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/atomic/i386/atomic.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/atomic/ia64/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/atomic/ia64/atomic.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/atomic/powerpc/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/atomic/powerpc/atomic.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/atomic/sparc/asi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/atomic/sparc/asi.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/atomic/sparc/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/atomic/sparc/atomic.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/atomic/sparc/cpufunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/atomic/sparc/cpufunc.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/location_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/location_t.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/main.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/netlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/netlist.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/netlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/netlist.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/netlist_elem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/netlist_elem.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/netlist_elem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/netlist_elem.h -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/rng.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/canneal/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/canneal/rng.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/Makefile.parsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/Makefile.parsec -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/binheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/binheap.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/binheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/binheap.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/config.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/debug.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/decoder.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/decoder.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/dedup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/dedup.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/dedupdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/dedupdef.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/encoder.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/encoder.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/hashtable.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/hashtable.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/hashtable_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/hashtable_private.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/aes.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/asn1.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/asn1t.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/bio.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/bn.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/buffer.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/cast.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/comp.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/conf.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/crypto.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/des.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/des_old.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/dh.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/dsa.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/dso.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/dtls1.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/e_os2.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/ec.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/ecdh.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/engine.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/err.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/evp.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/fips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/fips.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/hmac.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/idea.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/kssl.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/lhash.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/md2.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/md4.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/md5.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/objects.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/ocsp.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/pem.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/pem2.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/pqueue.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/rand.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/rc2.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/rc4.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/ripemd.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/rsa.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/sha.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/ssl.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/ssl2.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/ssl23.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/ssl3.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/stack.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/store.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/tls1.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/tmdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/tmdiff.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/txt_db.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/ui.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/x509.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/openssl/x509v3.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/zconf.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/include/zlib.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/queue.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/queue.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/rabin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/rabin.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/rabin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/rabin.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/tree.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/tree.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/util.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup/util.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/Makefile.parsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/Makefile.parsec -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/binheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/binheap.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/binheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/binheap.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/config.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/debug.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/decoder.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/decoder.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/dedup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/dedup.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/dedupdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/dedupdef.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/encoder.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/encoder.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/hashtable.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/hashtable.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/include/zconf.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/include/zlib.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/queue.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/queue.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/rabin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/rabin.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/rabin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/rabin.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/tree.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/tree.h -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/util.c -------------------------------------------------------------------------------- /autoperf/tests/apps/dedup_faster/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/dedup_faster/util.h -------------------------------------------------------------------------------- /autoperf/tests/apps/defines.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/defines.mk -------------------------------------------------------------------------------- /autoperf/tests/apps/fluidanimate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/fluidanimate/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/fluidanimate/TEST_ARGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/fluidanimate/TEST_ARGS -------------------------------------------------------------------------------- /autoperf/tests/apps/fluidanimate/TEST_ARGS.back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/fluidanimate/TEST_ARGS.back -------------------------------------------------------------------------------- /autoperf/tests/apps/fluidanimate/cmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/fluidanimate/cmp.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/fluidanimate/parsec_barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/fluidanimate/parsec_barrier.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/fluidanimate/parsec_barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/fluidanimate/parsec_barrier.hpp -------------------------------------------------------------------------------- /autoperf/tests/apps/fluidanimate/pthreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/fluidanimate/pthreads.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/fluidanimate/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/fluidanimate/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/apps/fluidanimate/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/fluidanimate/serial.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/fluidanimate/tbb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/fluidanimate/tbb.cpp -------------------------------------------------------------------------------- /autoperf/tests/apps/histogram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/histogram/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/histogram/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/histogram/README -------------------------------------------------------------------------------- /autoperf/tests/apps/histogram/TEST_ARGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/histogram/TEST_ARGS -------------------------------------------------------------------------------- /autoperf/tests/apps/histogram/TRAIN_ARGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/histogram/TRAIN_ARGS -------------------------------------------------------------------------------- /autoperf/tests/apps/histogram/histogram-pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/histogram/histogram-pthread.c -------------------------------------------------------------------------------- /autoperf/tests/apps/histogram/histogram-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/histogram/histogram-seq.c -------------------------------------------------------------------------------- /autoperf/tests/apps/histogram/histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/histogram/histogram.c -------------------------------------------------------------------------------- /autoperf/tests/apps/histogram/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/histogram/run.sh -------------------------------------------------------------------------------- /autoperf/tests/apps/histogram/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/histogram/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/apps/kmeans/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/kmeans/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/kmeans/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/kmeans/README -------------------------------------------------------------------------------- /autoperf/tests/apps/kmeans/kmeans-pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/kmeans/kmeans-pthread.c -------------------------------------------------------------------------------- /autoperf/tests/apps/kmeans/kmeans-pthread.c_bckup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/kmeans/kmeans-pthread.c_bckup -------------------------------------------------------------------------------- /autoperf/tests/apps/kmeans/kmeans-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/kmeans/kmeans-seq.c -------------------------------------------------------------------------------- /autoperf/tests/apps/kmeans/kmeans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/kmeans/kmeans.c -------------------------------------------------------------------------------- /autoperf/tests/apps/linear_regression/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/linear_regression/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/linear_regression/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/linear_regression/README -------------------------------------------------------------------------------- /autoperf/tests/apps/linear_regression/TEST_ARGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/linear_regression/TEST_ARGS -------------------------------------------------------------------------------- /autoperf/tests/apps/linear_regression/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/linear_regression/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/apps/reverse_index/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/reverse_index/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/reverse_index/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/reverse_index/README -------------------------------------------------------------------------------- /autoperf/tests/apps/reverse_index/TEST_ARGS: -------------------------------------------------------------------------------- 1 | 16 2 | 32 3 | -------------------------------------------------------------------------------- /autoperf/tests/apps/reverse_index/reverseindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/reverse_index/reverseindex.c -------------------------------------------------------------------------------- /autoperf/tests/apps/reverse_index/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/reverse_index/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/apps/reverse_index/stddefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/reverse_index/stddefines.h -------------------------------------------------------------------------------- /autoperf/tests/apps/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/test/Makefile -------------------------------------------------------------------------------- /autoperf/tests/apps/test/do_loops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/test/do_loops.c -------------------------------------------------------------------------------- /autoperf/tests/apps/test/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/test/dummy.c -------------------------------------------------------------------------------- /autoperf/tests/apps/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/apps/test/test.c -------------------------------------------------------------------------------- /autoperf/tests/include/MapReduceScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/include/MapReduceScheduler.h -------------------------------------------------------------------------------- /autoperf/tests/include/map_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/include/map_reduce.h -------------------------------------------------------------------------------- /autoperf/tests/include/stddefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/include/stddefines.h -------------------------------------------------------------------------------- /autoperf/tests/include/stddefines_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/include/stddefines_old.h -------------------------------------------------------------------------------- /autoperf/tests/kernels/defines.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/defines.mk -------------------------------------------------------------------------------- /autoperf/tests/kernels/pdotproduct/COUNTERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/pdotproduct/COUNTERS -------------------------------------------------------------------------------- /autoperf/tests/kernels/pdotproduct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/pdotproduct/Makefile -------------------------------------------------------------------------------- /autoperf/tests/kernels/pdotproduct/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/pdotproduct/README -------------------------------------------------------------------------------- /autoperf/tests/kernels/pdotproduct/pdotproduct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/pdotproduct/pdotproduct.c -------------------------------------------------------------------------------- /autoperf/tests/kernels/pdotproduct/run_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/pdotproduct/run_profiler.py -------------------------------------------------------------------------------- /autoperf/tests/kernels/pdotproduct/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/pdotproduct/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/kernels/pmatrixcompare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/pmatrixcompare/Makefile -------------------------------------------------------------------------------- /autoperf/tests/kernels/pmatrixcompare/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/pmatrixcompare/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/kernels/pmatrixmult/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/pmatrixmult/Makefile -------------------------------------------------------------------------------- /autoperf/tests/kernels/pmatrixmult/pmatrixmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/pmatrixmult/pmatrixmult.c -------------------------------------------------------------------------------- /autoperf/tests/kernels/pmatrixmult/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/pmatrixmult/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/kernels/psumscalar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/psumscalar/Makefile -------------------------------------------------------------------------------- /autoperf/tests/kernels/psumscalar/psumscalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/psumscalar/psumscalar.c -------------------------------------------------------------------------------- /autoperf/tests/kernels/psumscalar/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/psumscalar/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/kernels/psumvector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/psumvector/Makefile -------------------------------------------------------------------------------- /autoperf/tests/kernels/psumvector/psumvector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/psumvector/psumvector.c -------------------------------------------------------------------------------- /autoperf/tests/kernels/psumvector/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/kernels/psumvector/run_test.py -------------------------------------------------------------------------------- /autoperf/tests/real_apps/diff_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/tests/real_apps/diff_util.py -------------------------------------------------------------------------------- /autoperf/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/autoperf/utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/autoperf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/source/autoperf.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/source/examples.rst -------------------------------------------------------------------------------- /docs/source/images/detect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/source/images/detect.png -------------------------------------------------------------------------------- /docs/source/images/train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/source/images/train.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/source/intro.rst -------------------------------------------------------------------------------- /docs/source/legacy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/source/legacy.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/vm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/docs/source/vm.rst -------------------------------------------------------------------------------- /environment_ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/environment_ubuntu.yml -------------------------------------------------------------------------------- /profiler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/Makefile -------------------------------------------------------------------------------- /profiler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/README -------------------------------------------------------------------------------- /profiler/finetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/finetime.c -------------------------------------------------------------------------------- /profiler/finetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/finetime.h -------------------------------------------------------------------------------- /profiler/libdefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/libdefault.cpp -------------------------------------------------------------------------------- /profiler/libfuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/libfuncs.cpp -------------------------------------------------------------------------------- /profiler/libfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/libfuncs.h -------------------------------------------------------------------------------- /profiler/mm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/mm.hh -------------------------------------------------------------------------------- /profiler/perfevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/perfevent.h -------------------------------------------------------------------------------- /profiler/perfpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/perfpoint.cpp -------------------------------------------------------------------------------- /profiler/perfpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/perfpoint.h -------------------------------------------------------------------------------- /profiler/recordentries.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/recordentries.hh -------------------------------------------------------------------------------- /profiler/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/report.h -------------------------------------------------------------------------------- /profiler/scripts/COUNTERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/scripts/COUNTERS -------------------------------------------------------------------------------- /profiler/scripts/run_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/scripts/run_profiler.py -------------------------------------------------------------------------------- /profiler/threadmods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/threadmods.h -------------------------------------------------------------------------------- /profiler/xdefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/xdefines.h -------------------------------------------------------------------------------- /profiler/xrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/xrun.h -------------------------------------------------------------------------------- /profiler/xthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/profiler/xthread.h -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/setup.py -------------------------------------------------------------------------------- /tests/Default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/Default.mk -------------------------------------------------------------------------------- /tests/apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/Makefile -------------------------------------------------------------------------------- /tests/apps/bodytrack/.mylog3.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/.mylog3.swp -------------------------------------------------------------------------------- /tests/apps/bodytrack/AnnealingFactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/AnnealingFactor.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/AnnealingFactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/AnnealingFactor.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/AsyncIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/AsyncIO.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/AsyncIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/AsyncIO.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/BodyGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/BodyGeometry.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/BodyGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/BodyGeometry.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/BodyPose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/BodyPose.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/BodyPose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/BodyPose.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/CameraModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/CameraModel.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/CameraModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/CameraModel.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/CovarianceMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/CovarianceMatrix.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/CovarianceMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/CovarianceMatrix.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/DMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/DMatrix.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/BinaryImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/BinaryImage.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexColor.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexDefs.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexDraw.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexFilter.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexIO.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexIO.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexImage.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexImage.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexImageStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexImageStatus.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexImageStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexImageStore.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexLib.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexOperators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexOperators.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexThreshold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexThreshold.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/FlexImageLib/FlexTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/FlexImageLib/FlexTransform.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/ImageMeasurements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/ImageMeasurements.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/ImageMeasurements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/ImageMeasurements.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/ImageProjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/ImageProjection.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/ImageProjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/ImageProjection.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/Makefile -------------------------------------------------------------------------------- /tests/apps/bodytrack/ParticleFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/ParticleFilter.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/ParticleFilterOMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/ParticleFilterOMP.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/ParticleFilterPthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/ParticleFilterPthread.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/ParticleFilterTBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/ParticleFilterTBB.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/RandomGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/RandomGenerator.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/RandomGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/RandomGenerator.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/SmallVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/SmallVectors.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/TBBtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/TBBtypes.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/TrackingModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/TrackingModel.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/TrackingModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/TrackingModel.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/TrackingModelOMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/TrackingModelOMP.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/TrackingModelOMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/TrackingModelOMP.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/TrackingModelPthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/TrackingModelPthread.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/TrackingModelPthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/TrackingModelPthread.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/TrackingModelTBB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/TrackingModelTBB.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/TrackingModelTBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/TrackingModelTBB.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/Vector3.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/WorkPoolPthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/WorkPoolPthread.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/lib/libflex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/lib/libflex.a -------------------------------------------------------------------------------- /tests/apps/bodytrack/lib/libflex.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/lib/libflex.la -------------------------------------------------------------------------------- /tests/apps/bodytrack/lib/libthreads.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/lib/libthreads.a -------------------------------------------------------------------------------- /tests/apps/bodytrack/lib/libthreads.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/lib/libthreads.la -------------------------------------------------------------------------------- /tests/apps/bodytrack/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/main.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/poses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/poses.txt -------------------------------------------------------------------------------- /tests/apps/bodytrack/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/run.py -------------------------------------------------------------------------------- /tests/apps/bodytrack/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/run_test.py -------------------------------------------------------------------------------- /tests/apps/bodytrack/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/system.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/Barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/Barrier.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/Barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/Barrier.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/Condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/Condition.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/Condition.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/LockTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/LockTypes.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/Makefile -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/Mutex.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/Mutex.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/RWLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/RWLock.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/RWLock.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/SynchQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/SynchQueue.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/Thread.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/Thread.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/ThreadGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/ThreadGroup.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/ThreadGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/ThreadGroup.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/TicketDispenser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/TicketDispenser.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/WorkerGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/WorkerGroup.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/WorkerGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/WorkerGroup.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/atomic/amd64/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/atomic/amd64/atomic.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/atomic/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/atomic/atomic.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/atomic/i386/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/atomic/i386/atomic.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/atomic/ia64/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/atomic/ia64/atomic.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/atomic/sparc/asi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/atomic/sparc/asi.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/atomic/sparc/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/atomic/sparc/atomic.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/atomic/sparc/cpufunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/atomic/sparc/cpufunc.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/config.h -------------------------------------------------------------------------------- /tests/apps/bodytrack/threads/libthreads.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack/threads/libthreads.la -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/.mylog3.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/.mylog3.swp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/AnnealingFactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/AnnealingFactor.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/AnnealingFactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/AnnealingFactor.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/AsyncIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/AsyncIO.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/AsyncIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/AsyncIO.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/BodyGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/BodyGeometry.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/BodyGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/BodyGeometry.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/BodyPose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/BodyPose.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/BodyPose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/BodyPose.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/COUNTERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/COUNTERS -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/CameraModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/CameraModel.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/CameraModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/CameraModel.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/CovarianceMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/CovarianceMatrix.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/CovarianceMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/CovarianceMatrix.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/DMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/DMatrix.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/FlexImageLib/FlexDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/FlexImageLib/FlexDefs.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/FlexImageLib/FlexDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/FlexImageLib/FlexDraw.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/FlexImageLib/FlexIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/FlexImageLib/FlexIO.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/FlexImageLib/FlexIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/FlexImageLib/FlexIO.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/FlexImageLib/FlexLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/FlexImageLib/FlexLib.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/ImageMeasurements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/ImageMeasurements.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/ImageMeasurements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/ImageMeasurements.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/ImageProjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/ImageProjection.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/ImageProjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/ImageProjection.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/Makefile -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/ParticleFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/ParticleFilter.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/ParticleFilterOMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/ParticleFilterOMP.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/ParticleFilterPthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/ParticleFilterPthread.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/ParticleFilterTBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/ParticleFilterTBB.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/RandomGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/RandomGenerator.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/RandomGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/RandomGenerator.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/SmallVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/SmallVectors.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/TBBtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/TBBtypes.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/TrackingModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/TrackingModel.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/TrackingModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/TrackingModel.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/TrackingModelOMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/TrackingModelOMP.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/TrackingModelOMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/TrackingModelOMP.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/TrackingModelPthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/TrackingModelPthread.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/TrackingModelTBB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/TrackingModelTBB.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/TrackingModelTBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/TrackingModelTBB.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/Vector3.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/WorkPoolPthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/WorkPoolPthread.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/lib/libflex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/lib/libflex.a -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/lib/libflex.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/lib/libflex.la -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/lib/libthreads.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/lib/libthreads.a -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/lib/libthreads.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/lib/libthreads.la -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/main.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/poses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/poses.txt -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/run.py -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/run_test.py -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/system.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/Barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/Barrier.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/Barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/Barrier.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/Condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/Condition.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/Condition.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/LockTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/LockTypes.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/Makefile -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/Mutex.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/Mutex.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/RWLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/RWLock.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/RWLock.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/SynchQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/SynchQueue.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/Thread.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/Thread.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/ThreadGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/ThreadGroup.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/ThreadGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/ThreadGroup.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/WorkerGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/WorkerGroup.cpp -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/WorkerGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/WorkerGroup.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/atomic/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/atomic/atomic.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/config.h -------------------------------------------------------------------------------- /tests/apps/bodytrack_faster/threads/libthreads.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/bodytrack_faster/threads/libthreads.la -------------------------------------------------------------------------------- /tests/apps/canneal/AtomicPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/AtomicPtr.h -------------------------------------------------------------------------------- /tests/apps/canneal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/Makefile -------------------------------------------------------------------------------- /tests/apps/canneal/MersenneTwister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/MersenneTwister.h -------------------------------------------------------------------------------- /tests/apps/canneal/annealer_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/annealer_thread.cpp -------------------------------------------------------------------------------- /tests/apps/canneal/annealer_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/annealer_thread.h -------------------------------------------------------------------------------- /tests/apps/canneal/annealer_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/annealer_types.h -------------------------------------------------------------------------------- /tests/apps/canneal/atomic/alpha/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/atomic/alpha/atomic.h -------------------------------------------------------------------------------- /tests/apps/canneal/atomic/amd64/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/atomic/amd64/atomic.h -------------------------------------------------------------------------------- /tests/apps/canneal/atomic/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/atomic/atomic.h -------------------------------------------------------------------------------- /tests/apps/canneal/atomic/i386/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/atomic/i386/atomic.h -------------------------------------------------------------------------------- /tests/apps/canneal/atomic/ia64/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/atomic/ia64/atomic.h -------------------------------------------------------------------------------- /tests/apps/canneal/atomic/powerpc/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/atomic/powerpc/atomic.h -------------------------------------------------------------------------------- /tests/apps/canneal/atomic/sparc/asi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/atomic/sparc/asi.h -------------------------------------------------------------------------------- /tests/apps/canneal/atomic/sparc/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/atomic/sparc/atomic.h -------------------------------------------------------------------------------- /tests/apps/canneal/atomic/sparc/cpufunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/atomic/sparc/cpufunc.h -------------------------------------------------------------------------------- /tests/apps/canneal/location_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/location_t.h -------------------------------------------------------------------------------- /tests/apps/canneal/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/main.cpp -------------------------------------------------------------------------------- /tests/apps/canneal/netlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/netlist.cpp -------------------------------------------------------------------------------- /tests/apps/canneal/netlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/netlist.h -------------------------------------------------------------------------------- /tests/apps/canneal/netlist_elem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/netlist_elem.cpp -------------------------------------------------------------------------------- /tests/apps/canneal/netlist_elem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/netlist_elem.h -------------------------------------------------------------------------------- /tests/apps/canneal/rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/rng.cpp -------------------------------------------------------------------------------- /tests/apps/canneal/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/canneal/rng.h -------------------------------------------------------------------------------- /tests/apps/dedup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/Makefile -------------------------------------------------------------------------------- /tests/apps/dedup/Makefile.parsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/Makefile.parsec -------------------------------------------------------------------------------- /tests/apps/dedup/binheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/binheap.c -------------------------------------------------------------------------------- /tests/apps/dedup/binheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/binheap.h -------------------------------------------------------------------------------- /tests/apps/dedup/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/config.h -------------------------------------------------------------------------------- /tests/apps/dedup/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/debug.h -------------------------------------------------------------------------------- /tests/apps/dedup/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/decoder.c -------------------------------------------------------------------------------- /tests/apps/dedup/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/decoder.h -------------------------------------------------------------------------------- /tests/apps/dedup/dedup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/dedup.c -------------------------------------------------------------------------------- /tests/apps/dedup/dedupdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/dedupdef.h -------------------------------------------------------------------------------- /tests/apps/dedup/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/encoder.c -------------------------------------------------------------------------------- /tests/apps/dedup/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/encoder.h -------------------------------------------------------------------------------- /tests/apps/dedup/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/hashtable.c -------------------------------------------------------------------------------- /tests/apps/dedup/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/hashtable.h -------------------------------------------------------------------------------- /tests/apps/dedup/hashtable_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/hashtable_private.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/aes.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/asn1.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/asn1t.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/bio.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/blowfish.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/bn.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/buffer.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/cast.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/comp.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/conf.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/conf_api.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/crypto.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/des.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/des_old.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/dh.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/dsa.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/dso.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/dtls1.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/e_os2.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ec.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ecdh.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/engine.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/err.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/evp.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/fips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/fips.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/fips_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/fips_rand.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/hmac.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/idea.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/kssl.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/lhash.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/md2.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/md4.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/md5.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/objects.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ocsp.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/opensslv.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/pem.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/pem2.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/pq_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/pq_compat.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/pqueue.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/rand.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/rc2.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/rc4.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ripemd.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/rsa.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/safestack.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/sha.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ssl.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ssl2.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ssl23.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ssl3.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/stack.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/store.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/symhacks.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/tls1.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/tmdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/tmdiff.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/txt_db.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ui.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/x509.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/openssl/x509v3.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/zconf.h -------------------------------------------------------------------------------- /tests/apps/dedup/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/include/zlib.h -------------------------------------------------------------------------------- /tests/apps/dedup/lib/fips_premain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/lib/fips_premain.c -------------------------------------------------------------------------------- /tests/apps/dedup/lib/fips_premain.c.sha1: -------------------------------------------------------------------------------- 1 | HMAC-SHA1(fips_premain.c)= 9e5ddba185ac446e0cf36fcf8e1b3acffe5d0b2c 2 | -------------------------------------------------------------------------------- /tests/apps/dedup/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/lib/libcrypto.a -------------------------------------------------------------------------------- /tests/apps/dedup/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/lib/libssl.a -------------------------------------------------------------------------------- /tests/apps/dedup/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/lib/libz.a -------------------------------------------------------------------------------- /tests/apps/dedup/lib/pkgconfig/libcrypto.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/lib/pkgconfig/libcrypto.pc -------------------------------------------------------------------------------- /tests/apps/dedup/lib/pkgconfig/libssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/lib/pkgconfig/libssl.pc -------------------------------------------------------------------------------- /tests/apps/dedup/lib/pkgconfig/openssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/lib/pkgconfig/openssl.pc -------------------------------------------------------------------------------- /tests/apps/dedup/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/queue.c -------------------------------------------------------------------------------- /tests/apps/dedup/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/queue.h -------------------------------------------------------------------------------- /tests/apps/dedup/rabin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/rabin.c -------------------------------------------------------------------------------- /tests/apps/dedup/rabin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/rabin.h -------------------------------------------------------------------------------- /tests/apps/dedup/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/run_test.py -------------------------------------------------------------------------------- /tests/apps/dedup/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/tree.c -------------------------------------------------------------------------------- /tests/apps/dedup/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/tree.h -------------------------------------------------------------------------------- /tests/apps/dedup/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/util.c -------------------------------------------------------------------------------- /tests/apps/dedup/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup/util.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/Makefile -------------------------------------------------------------------------------- /tests/apps/dedup_faster/Makefile.parsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/Makefile.parsec -------------------------------------------------------------------------------- /tests/apps/dedup_faster/binheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/binheap.c -------------------------------------------------------------------------------- /tests/apps/dedup_faster/binheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/binheap.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/config.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/debug.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/decoder.c -------------------------------------------------------------------------------- /tests/apps/dedup_faster/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/decoder.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/dedup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/dedup.c -------------------------------------------------------------------------------- /tests/apps/dedup_faster/dedupdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/dedupdef.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/encoder.c -------------------------------------------------------------------------------- /tests/apps/dedup_faster/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/encoder.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/hashtable.c -------------------------------------------------------------------------------- /tests/apps/dedup_faster/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/hashtable.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/hashtable_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/hashtable_private.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/aes.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/asn1.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/asn1t.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/bio.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/blowfish.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/bn.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/buffer.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/cast.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/comp.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/conf.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/conf_api.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/crypto.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/des.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/des_old.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/dh.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/dsa.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/dso.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/dtls1.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/e_os2.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/ec.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/ecdh.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/engine.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/err.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/evp.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/fips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/fips.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/fips_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/fips_rand.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/hmac.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/idea.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/kssl.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/lhash.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/md2.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/md4.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/md5.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/ocsp.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/pem.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/pem2.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/pqueue.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/rand.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/rc2.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/rc4.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/ripemd.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/rsa.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/sha.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/ssl.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/ssl2.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/ssl23.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/ssl3.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/stack.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/store.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/tls1.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/tmdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/tmdiff.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/txt_db.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/ui.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/x509.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/openssl/x509v3.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/zconf.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/include/zlib.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/lib/fips_premain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/lib/fips_premain.c -------------------------------------------------------------------------------- /tests/apps/dedup_faster/lib/fips_premain.c.sha1: -------------------------------------------------------------------------------- 1 | HMAC-SHA1(fips_premain.c)= 9e5ddba185ac446e0cf36fcf8e1b3acffe5d0b2c 2 | -------------------------------------------------------------------------------- /tests/apps/dedup_faster/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/lib/libcrypto.a -------------------------------------------------------------------------------- /tests/apps/dedup_faster/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/lib/libssl.a -------------------------------------------------------------------------------- /tests/apps/dedup_faster/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/lib/libz.a -------------------------------------------------------------------------------- /tests/apps/dedup_faster/lib/pkgconfig/libssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/lib/pkgconfig/libssl.pc -------------------------------------------------------------------------------- /tests/apps/dedup_faster/lib/pkgconfig/openssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/lib/pkgconfig/openssl.pc -------------------------------------------------------------------------------- /tests/apps/dedup_faster/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/queue.c -------------------------------------------------------------------------------- /tests/apps/dedup_faster/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/queue.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/rabin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/rabin.c -------------------------------------------------------------------------------- /tests/apps/dedup_faster/rabin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/rabin.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/run_test.py -------------------------------------------------------------------------------- /tests/apps/dedup_faster/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/tree.c -------------------------------------------------------------------------------- /tests/apps/dedup_faster/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/tree.h -------------------------------------------------------------------------------- /tests/apps/dedup_faster/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/util.c -------------------------------------------------------------------------------- /tests/apps/dedup_faster/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/dedup_faster/util.h -------------------------------------------------------------------------------- /tests/apps/defines.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/defines.mk -------------------------------------------------------------------------------- /tests/apps/fluidanimate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/Makefile -------------------------------------------------------------------------------- /tests/apps/fluidanimate/TEST_ARGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/TEST_ARGS -------------------------------------------------------------------------------- /tests/apps/fluidanimate/TEST_ARGS.back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/TEST_ARGS.back -------------------------------------------------------------------------------- /tests/apps/fluidanimate/cmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/cmp.cpp -------------------------------------------------------------------------------- /tests/apps/fluidanimate/lib/libMagick.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/lib/libMagick.a -------------------------------------------------------------------------------- /tests/apps/fluidanimate/lib/libWand.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/lib/libWand.a -------------------------------------------------------------------------------- /tests/apps/fluidanimate/lib/libgsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/lib/libgsl.a -------------------------------------------------------------------------------- /tests/apps/fluidanimate/lib/libgslcblas.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/lib/libgslcblas.a -------------------------------------------------------------------------------- /tests/apps/fluidanimate/lib/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/lib/libjpeg.a -------------------------------------------------------------------------------- /tests/apps/fluidanimate/parsec_barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/parsec_barrier.cpp -------------------------------------------------------------------------------- /tests/apps/fluidanimate/parsec_barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/parsec_barrier.hpp -------------------------------------------------------------------------------- /tests/apps/fluidanimate/pthreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/pthreads.cpp -------------------------------------------------------------------------------- /tests/apps/fluidanimate/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/run_test.py -------------------------------------------------------------------------------- /tests/apps/fluidanimate/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/serial.cpp -------------------------------------------------------------------------------- /tests/apps/fluidanimate/tbb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/fluidanimate/tbb.cpp -------------------------------------------------------------------------------- /tests/apps/histogram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/histogram/Makefile -------------------------------------------------------------------------------- /tests/apps/histogram/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/histogram/README -------------------------------------------------------------------------------- /tests/apps/histogram/TEST_ARGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/histogram/TEST_ARGS -------------------------------------------------------------------------------- /tests/apps/histogram/TRAIN_ARGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/histogram/TRAIN_ARGS -------------------------------------------------------------------------------- /tests/apps/histogram/histogram-pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/histogram/histogram-pthread.c -------------------------------------------------------------------------------- /tests/apps/histogram/histogram-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/histogram/histogram-seq.c -------------------------------------------------------------------------------- /tests/apps/histogram/histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/histogram/histogram.c -------------------------------------------------------------------------------- /tests/apps/histogram/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/histogram/run.sh -------------------------------------------------------------------------------- /tests/apps/histogram/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/histogram/run_test.py -------------------------------------------------------------------------------- /tests/apps/kmeans/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/kmeans/Makefile -------------------------------------------------------------------------------- /tests/apps/kmeans/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/kmeans/README -------------------------------------------------------------------------------- /tests/apps/kmeans/kmeans-pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/kmeans/kmeans-pthread.c -------------------------------------------------------------------------------- /tests/apps/kmeans/kmeans-pthread.c_bckup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/kmeans/kmeans-pthread.c_bckup -------------------------------------------------------------------------------- /tests/apps/kmeans/kmeans-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/kmeans/kmeans-seq.c -------------------------------------------------------------------------------- /tests/apps/kmeans/kmeans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/kmeans/kmeans.c -------------------------------------------------------------------------------- /tests/apps/linear_regression/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/linear_regression/Makefile -------------------------------------------------------------------------------- /tests/apps/linear_regression/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/linear_regression/README -------------------------------------------------------------------------------- /tests/apps/linear_regression/TEST_ARGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/linear_regression/TEST_ARGS -------------------------------------------------------------------------------- /tests/apps/linear_regression/linear_regression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/linear_regression/linear_regression.c -------------------------------------------------------------------------------- /tests/apps/linear_regression/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/linear_regression/run_test.py -------------------------------------------------------------------------------- /tests/apps/reverse_index/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/reverse_index/Makefile -------------------------------------------------------------------------------- /tests/apps/reverse_index/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/reverse_index/README -------------------------------------------------------------------------------- /tests/apps/reverse_index/TEST_ARGS: -------------------------------------------------------------------------------- 1 | 16 2 | 32 3 | -------------------------------------------------------------------------------- /tests/apps/reverse_index/anomalous_root.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/reverse_index/anomalous_root.out -------------------------------------------------------------------------------- /tests/apps/reverse_index/reverseindex-pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/reverse_index/reverseindex-pthread.c -------------------------------------------------------------------------------- /tests/apps/reverse_index/reverseindex-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/reverse_index/reverseindex-seq.c -------------------------------------------------------------------------------- /tests/apps/reverse_index/reverseindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/reverse_index/reverseindex.c -------------------------------------------------------------------------------- /tests/apps/reverse_index/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/reverse_index/run_test.py -------------------------------------------------------------------------------- /tests/apps/reverse_index/stddefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/reverse_index/stddefines.h -------------------------------------------------------------------------------- /tests/apps/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/test/Makefile -------------------------------------------------------------------------------- /tests/apps/test/do_loops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/test/do_loops.c -------------------------------------------------------------------------------- /tests/apps/test/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/test/dummy.c -------------------------------------------------------------------------------- /tests/apps/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/apps/test/test.c -------------------------------------------------------------------------------- /tests/include/MapReduceScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/include/MapReduceScheduler.h -------------------------------------------------------------------------------- /tests/include/map_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/include/map_reduce.h -------------------------------------------------------------------------------- /tests/include/stddefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/include/stddefines.h -------------------------------------------------------------------------------- /tests/include/stddefines_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/include/stddefines_old.h -------------------------------------------------------------------------------- /tests/kernels/defines.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/defines.mk -------------------------------------------------------------------------------- /tests/kernels/pdotproduct/COUNTERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pdotproduct/COUNTERS -------------------------------------------------------------------------------- /tests/kernels/pdotproduct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pdotproduct/Makefile -------------------------------------------------------------------------------- /tests/kernels/pdotproduct/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pdotproduct/README -------------------------------------------------------------------------------- /tests/kernels/pdotproduct/pdotproduct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pdotproduct/pdotproduct.c -------------------------------------------------------------------------------- /tests/kernels/pdotproduct/run_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pdotproduct/run_profiler.py -------------------------------------------------------------------------------- /tests/kernels/pdotproduct/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pdotproduct/run_test.py -------------------------------------------------------------------------------- /tests/kernels/pmatrixcompare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pmatrixcompare/Makefile -------------------------------------------------------------------------------- /tests/kernels/pmatrixcompare/pmatrixcompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pmatrixcompare/pmatrixcompare.c -------------------------------------------------------------------------------- /tests/kernels/pmatrixcompare/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pmatrixcompare/run_test.py -------------------------------------------------------------------------------- /tests/kernels/pmatrixmult/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pmatrixmult/Makefile -------------------------------------------------------------------------------- /tests/kernels/pmatrixmult/pmatrixmult-perfpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pmatrixmult/pmatrixmult-perfpoint -------------------------------------------------------------------------------- /tests/kernels/pmatrixmult/pmatrixmult-pthread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pmatrixmult/pmatrixmult-pthread -------------------------------------------------------------------------------- /tests/kernels/pmatrixmult/pmatrixmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pmatrixmult/pmatrixmult.c -------------------------------------------------------------------------------- /tests/kernels/pmatrixmult/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/pmatrixmult/run_test.py -------------------------------------------------------------------------------- /tests/kernels/psumscalar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/psumscalar/Makefile -------------------------------------------------------------------------------- /tests/kernels/psumscalar/psumscalar-perfpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/psumscalar/psumscalar-perfpoint -------------------------------------------------------------------------------- /tests/kernels/psumscalar/psumscalar-pthread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/psumscalar/psumscalar-pthread -------------------------------------------------------------------------------- /tests/kernels/psumscalar/psumscalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/psumscalar/psumscalar.c -------------------------------------------------------------------------------- /tests/kernels/psumscalar/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/psumscalar/run_test.py -------------------------------------------------------------------------------- /tests/kernels/psumvector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/psumvector/Makefile -------------------------------------------------------------------------------- /tests/kernels/psumvector/psumvector-perfpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/psumvector/psumvector-perfpoint -------------------------------------------------------------------------------- /tests/kernels/psumvector/psumvector-pthread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/psumvector/psumvector-pthread -------------------------------------------------------------------------------- /tests/kernels/psumvector/psumvector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/psumvector/psumvector.c -------------------------------------------------------------------------------- /tests/kernels/psumvector/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/kernels/psumvector/run_test.py -------------------------------------------------------------------------------- /tests/real_apps/boost_false_sharing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/real_apps/boost_false_sharing/Makefile -------------------------------------------------------------------------------- /tests/real_apps/diff_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mejbah/AutoPerf/HEAD/tests/real_apps/diff_util.py --------------------------------------------------------------------------------