Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-22 Thread Namik Karovic
Hi Matt, We should probably list the website where results could be found right > > next to the flag and a way to tag the results with a username or > > nickname and supply the person with a direct URL to their results so > > they can send to their friends and brag :) > > > You are absolutely rig

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-22 Thread Namik Karovic
Hey Karl, * I notice that the splash screen has some compression artifacts. Is it > enough to just replace the respective graphics file with a higher > resolution image? Yes, just make sure the new image has the same name and extension. * The benchmark-logo ViennaCL_Benchmark_experimentLogo.p

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-22 Thread Karl Rupp
Hi Matt, > You raise an interesting point about automatically uploading the > results. I noticed the option was checked by default and it didn't > bother me in the least. I definitely want to publish my results but > could see how others may not want to. Some Europeans are pretty sensitive w.r

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-22 Thread Matthew Musto
Karl, You raise an interesting point about automatically uploading the results. I noticed the option was checked by default and it didn't bother me in the least. I definitely want to publish my results but could see how others may not want to. We should probably list the website where results co

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-22 Thread Karl Rupp
Hi Namik, > I guess I forgot to work on Qt4 compatibility. It's fixed now: > https://github.com/viennacl/viennacl-benchmark-gui/commit/c213ef1058cd84841c0ca4c45de8c79b7be833bf > It seems the MOC does not support declaring signal/slot functions within > preprocessor if statements... That's why > >

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-22 Thread Namik Karovic
Hi Karl, I tried building the GUI yesterday but got stuck because a QJsonDocument is returned from a signal (or slot, don't remember). The auto-MOC generator seems to be ignoring all preprocessor guards, so I couldn't get this to work on my machine. Is there any 'easy' fix to solve this? I gu

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-21 Thread Karl Rupp
Hi Namik, I tried building the GUI yesterday but got stuck because a QJsonDocument is returned from a signal (or slot, don't remember). The auto-MOC generator seems to be ignoring all preprocessor guards, so I couldn't get this to work on my machine. Is there any 'easy' fix to solve this? As f

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-18 Thread Namik Karovic
Hey Philippe, I've disabled LU and renamed sizes to {M,N,K}. It's running fine now. Except custom sparse matrices :D I have no idea how to load and use them for benchmarking, since the new procedure using on-the-fly matrix generation is very different than the one using boost. Here's how I tried

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-17 Thread Philippe Tillet
Hey Namik, The code looks fine. As a small tip, I would advise to use blas3MatrixSize{A,B,C} = {M, N, K} ; it's much more conventional. I would also suggest to remove LU from the benchmark. I only achieve 11 GFLOP/s on my machine (GEMM peaks at 120GFLOP/s). It will smash the overall score if you k

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-17 Thread Namik Karovic
I forgot my Visual Studio with Qt is broken :) so I can't test MSVC & CMake... I did, however, test mingw & cmake, and it works fine. On Mon, Aug 18, 2014 at 4:33 AM, Namik Karovic wrote: > I just got it to work with MSVC10 & Qt5.3.1. Changed uint64_t to uint. > Don't think there'll be any prec

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-17 Thread Namik Karovic
I just got it to work with MSVC10 & Qt5.3.1. Changed uint64_t to uint. Don't think there'll be any precision loss there. I also had to add a line to the qmake build file, and manually copy libarchive libs. That copying part is rather interesting: -first it complained about not finding libarchive.l

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-17 Thread Matthew Musto
Yeah, MSVC 12. I'll look into it and submit a pull request. -Matt On Sun, Aug 17, 2014 at 10:09 PM, Namik Karovic wrote: > Hey Matt, > > 'uint64_t' : undeclared identifier > > > This looks like a compiler hick-up. I suppose this occured with MSVC? Feel > free to submit a fix. > > Regards, Na

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-17 Thread Namik Karovic
Hey Matt, 'uint64_t' : undeclared identifier This looks like a compiler hick-up. I suppose this occured with MSVC? Feel free to submit a fix. Regards, Namik On Mon, Aug 18, 2014 at 3:54 AM, Matthew Musto wrote: > Namik, > > I just tried to build it and got a couple errors. I made sure to

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-17 Thread Matthew Musto
Namik, I just tried to build it and got a couple errors. I made sure to run 'git submodule update --init' and I started with a fresh build folder for cmake. Since I know this is in active development, I thought I would ask first before trying to fix it and submitting a pull request. Here are th

Re: [ViennaCL-devel] Benchmark GUI Expert Mode

2014-08-17 Thread Karl Rupp
Hi Namik, > I just pushed the first working version of expert(custom) benchmark > mode. Selecting custom sparse matrices is yet to be implemented, but all > other benchmark configs are working. thanks! I'll comment on it tomorrow. > Except blas3, that is. I think I got the sizes wrong. I'd appr