Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
7101abb
Added GPU implementation of DNNs.
Jul 17, 2016
49906d9
Removed space before variable.
Jul 17, 2016
d4b6866
Removed Print() statement on weight matrices after training.
Jul 17, 2016
5690a9c
Removed output.
Jul 17, 2016
578e317
Removed explicit setting of the backend compiler.
Jul 18, 2016
a09f2fa
Added include guards for Cuda architecture header.
Jul 18, 2016
0146c55
Added missing test file.
Jul 18, 2016
f8d2317
Added missing file.
Jul 18, 2016
fb77aa8
Removed profiling switch in TestDerivativesCuda.
Jul 19, 2016
7f559f7
Fixed naming of Cuda kernels.
Jul 19, 2016
66587d0
Some optimzations in the training routine.
Jul 21, 2016
9d162bf
Applied stash.
Jul 21, 2016
ab09b0d
Fixed out of bounds memory access in vertical reduction kernel.
Jul 25, 2016
56d0579
Fixed out of bounds memory access in vertical reduction kernel.
Jul 25, 2016
92be232
Merge branch 'tmva_gpu' of https://github.com/simonpf/root into tmva_gpu
Jul 25, 2016
9eb6a50
Minor cosmetics.
Jul 26, 2016
c6ae8ed
Some more cosmetics.
Jul 26, 2016
ab85e89
Cleaned up output.
Jul 28, 2016
4a5822a
Merge branch 'tmva_gpu' of https://github.com/simonpf/root into tmva_gpu
Jul 28, 2016
6c8abba
Fixed minimization test.
Jul 28, 2016
e594dda
Fixed formatting in CudaMatrix.h
Jul 28, 2016
0c7667f
Enlarged batch size in minimization test.
Jul 28, 2016
f9b95e9
:Merge branch 'tmva_gpu' of github.com:simonpf/root into tmva_gpu
Jul 28, 2016
46ac988
Generic data loader.
Aug 9, 2016
8e1edd2
Added TestDataLoaderCuda.cxx.
Aug 9, 2016
dfe0f09
Made copy async.
Aug 9, 2016
b9528e5
Smaller fixes.
Aug 9, 2016
0a3ae51
Added flop counter.
Aug 9, 2016
7cef87b
Merge branch 'tmva_gpu' of github.com:simonpf/root into tmva_gpu
Aug 9, 2016
3cb26ba
Fixed flop rate computation.
Aug 9, 2016
0b23d06
Testing different curand initialization.
Aug 11, 2016
df80c5e
Testing different parallelization scheme.
Aug 11, 2016
dcbf1c6
Minor fixes and modifications.
Aug 13, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed Print() statement on weight matrices after training.
  • Loading branch information
Simon Pfreundschuh committed Jul 17, 2016
commit d4b686657c1d187f0f943765e71eb7680a282961
2 changes: 0 additions & 2 deletions tmva/tmva/src/MethodDNN.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -728,8 +728,6 @@ void TMVA::MethodDNN::TrainGPU()
fNet.addLayer (DNN::Layer (outputSize, (*itLayout).second, eModeOutputValues));
fNet.setErrorFunction (fModeErrorFunction);

GPUNet.Print();

switch(fWeightInitializationStrategy)
{
case DNN::WeightInitializationStrategy::XAVIER :
Expand Down