Bitcoin Forum
May 30, 2024, 03:37:09 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 [4] 5 6 »
61  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 26, 2014, 10:38:47 AM
Looks like the OPENCL_LIBRARY is undefined. It should be in line 149. Edit FindOpenCL.cmake. Put debug messages after the find_library call.
Code:
  # Find the library
  find_library(OPENCL_LIBRARY OpenCL
    PATHS /lib${_OPENCL_LIB_DIR_SUFFIX}
    ${_OPENCL_LIB_OPTS}
    ${_OPENCL_ROOT_OPTS}
  )

  message("OpenCL Library: ${OPENCL_LIBRARY}")
  message("Path: ${CMAKE_FIND_ROOT_PATH}")
  message("Library suffix: ${_OPENCL_LIB_DIR_SUFFIX}")
  message("OPENCL_LIB_OPTS: ${_OPENCL_LIB_OPTS}")
  message("OPENCL_ROOT_OPTS: ${_OPENCL_ROOT_OPTS}")
Here is the correct output:
Code:
-- OpenCL: Searching for NVIDIA CUDA SDK
-- Looking for CL_VERSION_1_0
-- Looking for CL_VERSION_1_0 - found
-- Looking for CL_VERSION_1_1
-- Looking for CL_VERSION_1_1 - found
-- Looking for CL_VERSION_1_2
-- Looking for CL_VERSION_1_2 - not found
OpenCL Library: /opt/cuda/lib64/libOpenCL.so
Path: /opt/cuda
Library suffix: 64
OPENCL_LIB_OPTS:
OPENCL_ROOT_OPTS: ONLY_CMAKE_FIND_ROOT_PATH;NO_DEFAULT_PATH
-- Found OpenCL: /opt/cuda/include (found version "1.1")

In the logs you posted before I see
Code:
-- OpenCL: Searching in custom location
It means CUDA_PATH variable is not visible to cmake. Is it still the case? Delete the build directory or better clone the repository from scratch and run make again.

No. It was the case before as you advised to set OPENCL_ROOT (a few days ago).
But the defined path doesn't make a difference... the error is the same.

With set CUDA_PATH he is searching for the nvidia cuda SDK - and her found the CL Versions as you could read in my logs...
the problem is described in this post above, please take a closer look:
https://bitcointalk.org/index.php?topic=693118.msg8016537#msg8016537


...and the error stays the same:

Code:
-- Looking for CL_VERSION_1_0
-- Looking for CL_VERSION_1_0 - found
-- Looking for CL_VERSION_1_1
-- Looking for CL_VERSION_1_1 - found
-- Looking for CL_VERSION_1_2
-- Looking for CL_VERSION_1_2 - not found
CMake Error at /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:108 (message):
  Could NOT find OpenCL (missing: OPENCL_LIBRARY) (found version "1.1")
Call Stack (most recent call first):
  /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:315 (_FPHSA_FAILURE_MESSAGE)
  FindOpenCL.cmake:159 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
  CMakeLists.txt:13 (find_package)
62  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 26, 2014, 12:13:30 AM
Yes, you can use as many GPUs as you like with solo miner (single thread in readme is about pool miner). Try larger values for thread_delay if config file (ex. 2000). It's in milliseconds.


"thank you for your "answer", but in the readme file, i read :
"--mining-threads=[n], n - number of GPUs to use"

63  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 26, 2014, 12:08:23 AM
In the logs you posted before I see
Code:
-- OpenCL: Searching in custom location
It means CUDA_PATH variable is not visible to cmake. Is it still the case? Delete the build directory or better clone the repository from scratch and run make again.

When building on Linux you should:
1. Run 'make clean' if you got back here after some problems.
1. Set CUDA_PATH or AMDAPPSDKROOT, run 'printenv' to check.
2. Run 'make' and watch for OpenCL: Searching for NVIDIA CUDA SDK or OpenCL: Searching for AMD APP SDK. Back to 1st step if it's not in the log.
3. Watch for -- Looking for CL_VERSION_1_x - found. Check the environment variable points to the actual SDK directory if it's not in the log and get back to 1st step.
4. Check the other dependencies were found (Boost).
5. Compilation should start.

first steps clear. CUDA_PATH set. printenv checked.
3. is the problem. -- Looking for CL_VERSION_1_1 - found - is ok - but afterwards the compiler shows my beloved message:
CMake Error at /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:108 (message):
  Could NOT find OpenCL (missing: OPENCL_LIBRARY) (found version "1.1")


with the boolberry miner version from the 22. July (you fixed backward compatibility after for openCL 1.1/1.0) he shows the right path afterwards:
-- Found OpenCL: /usr/local/cuda/include (found version "1.1")
...and failed later (https://bitcointalk.org/index.php?topic=577267.msg7972653#msg7972653)
but with the actual version I did not get so far.

compiling cudaminer and ccminer forks were no problem so far.
64  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 25, 2014, 11:56:27 PM
Merged all updates from the main branch.
Source - https://github.com/mbkuperman/boolberry-opencl
Windows x64 binaries  - https://github.com/mbkuperman/boolberry-opencl/releases

Fixed previous binary release too (it was compressed with 7zip instead of zip).
65  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: July 25, 2014, 11:45:52 PM
OpenCL miner
Merged all updates from the main branch.
Source - https://github.com/mbkuperman/boolberry-opencl
Windows x64 binaries  - https://github.com/mbkuperman/boolberry-opencl/releases

Fixed previous binary release too (it was compressed with 7zip instead of zip).
66  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 24, 2014, 03:34:30 PM
Yes. You can mine to the same address with any number of solo miners. You'll see your blocks in your wallet connected to any boolbd instance.
Hello! if I will mine three rigs to one address (solo). This means that I can find a block 3 times faster or not? and when I find the block with all rigs SHARES me towards my?
67  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 24, 2014, 03:27:47 PM
When building on Linux you should:
1. Run 'make clean' if you got back here after some problems.
1. Set CUDA_PATH or AMDAPPSDKROOT, run 'printenv' to check.
2. Run 'make' and watch for OpenCL: Searching for NVIDIA CUDA SDK or OpenCL: Searching for AMD APP SDK. Back to 1st step if it's not in the log.
3. Watch for -- Looking for CL_VERSION_1_x - found. Check the environment variable points to the actual SDK directory if it's not in the log and get back to 1st step.
4. Check the other dependencies were found (Boost).
5. Compilation should start.

I've updated Linux build instructions in README.md. I tested both ways - AMD and Nvidia myself on clean Ubuntu 14.04 in Virtualbox and it works flawlessly. Run 'make clean' after you change build options.

mbk, thanks for re-checking.
Today I build up a clean unbuntu installation from the scratch, also in an virtualbox VM.
I used ubuntu 13.10 with the cuda 5.5 toolkit - the same base as used in kopiemtu.

but, I got exactly the same nasty error as before Tongue
your readme.md become great over the last days... so nothing seems unclear... but I don't know where the (my?) error could be.
maybe it does not work with cuda 5.5... maybe I make something wrong.

I was really interessted in mining BBR. But I just give up for the moment...

Thanks for trying to help.
 
68  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed [ Bittrex/Poloniex ] on: July 23, 2014, 05:15:45 PM
It's already there https://github.com/mbkuperman/boolberry-opencl/releases

OpenCL miner
If you get "Critical:This software is old, please update" messages, get update from https://github.com/mbkuperman/boolberry-opencl

Thanks.

I can't compile to save my life. I'll wait for a windows release.
69  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 23, 2014, 05:13:57 PM
I've updated Linux build instructions in README.md. I tested both ways - AMD and Nvidia myself on clean Ubuntu 14.04 in Virtualbox and it works flawlessly. Run 'make clean' after you change build options.
OK. Try to set OPENCL_ROOT as you did before. Don't forget to pull last update from github.

I edit my post above... he founds openCL... but it is still missing.
my compiler seems schizophrenic  Undecided
70  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed [ Bittrex/Poloniex ] on: July 23, 2014, 04:16:46 PM
OpenCL miner
If you get "Critical:This software is old, please update" messages, get update from https://github.com/mbkuperman/boolberry-opencl
71  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 23, 2014, 04:13:21 PM
Merged updates from the main branch. Updated executables in the Release section too.
https://github.com/mbkuperman/boolberry-opencl
72  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 23, 2014, 01:34:41 PM
I'm sorry. I meant 7xxx series. These are actual results I got myself:
Code:
7950@1100/1500 920khs
280x@1100/1500 970khs
7870@1100/1350 550khs
270x@1100/1500 670khs
hi there ... getting only 2200 kh/s with 2 x 6990 ( they are supposed to run like 4 6970 infact i run 4 threads)

is confirmed the 6970 gets 900 - 1000 kh/s ?

73  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 23, 2014, 10:14:14 AM
OK. Try to set OPENCL_ROOT as you did before. Don't forget to pull last update from github.

Found out your problem. The code had dependencies on OpenCL 1.2. Removed them. Now you should be able to compile it on OpenCL 1.1 and even 1.0.

Dear mbk,
   first - thank you for programming the BBR miner and your support.

but - now compiling stops sooner as before.
and does not find openCL anymore.

Code:
root@kopiemtu:/opt/miners/boolberry-opencl# make
mkdir -p build/release
cd build/release && cmake -D CMAKE_BUILD_TYPE=Release ../..
-- OpenCL: Searching for NVIDIA CUDA SDK
CMake Error at /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:108 (message):
  Could NOT find OpenCL (missing: OPENCL_LIBRARY)
Call Stack (most recent call first):
  /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:315 (_FPHSA_FAILURE_MESSAGE)
  FindOpenCL.cmake:159 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
  CMakeLists.txt:13 (find_package)

-- Configuring incomplete, errors occurred!
make: *** [cmake-release] Error 1




74  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 23, 2014, 09:31:00 AM
Found out your problem. The code had dependencies on OpenCL 1.2. Removed them. Now you should be able to compile it on OpenCL 1.1 and even 1.0.

I've not been able to get this to work on nvidia. Any tips? Specific cuda version required?

I did it, on my 860M.

EDIT: Trick is to define some of the variables it tells you to in the opencl cmake file comments.

...and how? please show us the light.
I stranded as you could read here:
https://bitcointalk.org/index.php?topic=577267.msg7972653#msg7972653
75  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry OpenCL GPU Miner Discussion - Works on AMD & Nvidia on: July 23, 2014, 08:54:39 AM
On Linux build:
I've updated the README.md some time ago but I'll repeat it here
Code:
Set AMDAPPSDKROOT or CUDA_PATH if they have not been set already depending on SDK you installed.
I tested on AMD but it should work with CUDA too because we need only headers and libraries to build.
I've not been able to get this to work on nvidia. Any tips? Specific cuda version required?

I did it, on my 860M.

EDIT: Trick is to define some of the variables it tells you to in the opencl cmake file comments.

...and how? please show us the light.
I stranded as you could read here:
https://bitcointalk.org/index.php?topic=577267.msg7972653#msg7972653
76  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed [ Bittrex/Poloniex ] on: July 21, 2014, 06:07:20 PM
OpenCL miner
Fixed the Linux build. At least you should be able to build it now  - I don't have a system to test mining Smiley
https://github.com/mbkuperman/boolberry-opencl
77  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BOUNTY] 2500 BBR for OpenCL Boolberry GPU Miner on: July 21, 2014, 05:57:40 PM
Got it. Thanks.

1000 BBR held by me has been sent to mbk
transaction 72359503cc4df572b193e8647c5607a59e1c130546436435b5df95b5175985d8
78  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BOUNTY] 2500 BBR for OpenCL Boolberry GPU Miner on: July 21, 2014, 05:53:42 PM
Fixed the Linux build. Tested on Ubuntu 13.10 and AMD SDK. Should work with CUDA too. Pull the update and make it again.

I have problems compiling your miner.
Kubuntu with cuda 5.5 installed.
Any idea?

79  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed [ Bittrex/Poloniex ] on: July 21, 2014, 12:34:30 PM
Output like this
Code:
2014-Jul-21 12:56:01.052013 [miner 0][OCL 0/0] error:  CL_INVALID_VALUE
2014-Jul-21 12:56:01.054013 [miner 0][OCL 0/0] device index must me between 0 and 4294967295
actually means selected OpenCL platform has 0 GPU devices. It happens if you installed CPU only OpenCL drivers from Intel or AMD. It should be gone after you select nvidia platform. Anyway don't change device_index - it doesn't make any sense. So if you tried everything - reboot.

Tried - without restarting (10min for restart....) all combinations with device_index 0,1,2 and platform_index 0,1,2
Same result

PC is i5-2500, 1 750Ti card, win7 x64, 8GB ram drivers 337.88
80  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed [ Bittrex/Poloniex ] on: July 21, 2014, 11:20:25 AM
Try to change the platform_index to 1. Set device_index to 0 if you have 1 GPU.

Trying to run on 750Ti

Quote
2014-Jul-21 12:56:01.052013 [miner 0][OCL 0/0] error:  CL_INVALID_VALUE
2014-Jul-21 12:56:01.054013 [miner 0][OCL 0/0] device index must me between 0 an
d 4294967295
The PC has Intel-integrated gpu + 1 750Ti.
Tried setting device_index 1 in json file... no luck
Pages: « 1 2 3 [4] 5 6 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!