Code Monkey home page Code Monkey logo

client's Introduction

qubic.li - Client

This is the main client component from qubic.li. It connects to the backend API and receives tasks to perform.

The Client runs on Docker, Windows and Linux. Below you find the instructions how to use it.

  1. Security Warning
  2. Pool Mining
  3. Download
  4. What's needed
  5. Windows
  6. Linux Option 1: Run qli-Client in a Linux Screen
  7. Linux option 2: Run qli-Client as Linux Service (Expert)
    a. Ubuntu 22.04
    b. Debian 12
    c. Redhat Enterprise 8.8
    d. Monitoring
    e. Remove Client
  8. HiveOs
  9. Appsettings.json Customization a. Trainer Options
  10. Troubleshooting

Security Warning

The client is able to download runners, which then performs the AI Training tasks. This can potentially be used in a bad manner. Run the client with the least priviliges which are possble. e.g. on windows NOT as Admininstrator; on linux NOT as root.

Find more information about the "principle of least privilege" on wikipedia: https://en.wikipedia.org/wiki/Principle_of_least_privilege

Pool Mining

If you don't want to operate your own Qubic infrastructure. You can join the qubic.li pool mining. You can either register an account (highly recomended) on http://app.qubic.li or you can join pool mining register-less.

If you want to create your own account, follow the instructions here: https://doc.qubic.world/becoming-a-computor-miner/how-to-participate

If you want registration-less pool mining, do the following:

  1. Create a Qubic Id (e.g. on https://wallet.qubic.li)
  2. Download Client from below (Version >=1.2)
  3. Start your Client with qli-Client <QUBICID> <THREADS>
  4. Check your performance: https://app.qubic.li/public

You can also put your PayoutId into the configuration file if you don't want to use command line arguments.

Download

We recommend to update your Version if there is a change in the Minor Version (e.g. from 1.3 to 1.4). Bugfix releases (e.g. from 1.3.1 to 1.3.2) are optional.

QLI Client

The QLI Client is the pool client and connects to the pool.

OS Platform Version Download Description
Windows x64 1.9.7 https://dl.qubic.li/downloads/qli-Client-1.9.7-Windows-x64.zip
Windows x64 1.9.7 https://dl.qubic.li/downloads/qli-Client-1.9.7-Windows-x64-Plain.zip Version without default configuration
Linux x64 1.9.7 https://dl.qubic.li/downloads/qli-Client-1.9.7-Linux-x64.tar.gz
HiveOs x64 1.9.7 https://dl.qubic.li/downloads/qubminer-latest.tar.gz Please follow instructions for hiveos: https://github.com/qubic-li/hiveos

QLI Trainer

The trainer is the binary executable which is responsible for the training. The Trainer is automatically downloaded by the Client. This ensures, that you always have the latest updates and the most optimized training experience.

QLI Trainer Options

The following table shows the available trainers.

Type Version Key (gpuVersion/cpuVersion) Description
GPU CUDA12 CUDA Version for all newer/bigger GPU's (>4090)
GPU AMD General AMD Version
CPU GENERIC Generic x64 CPU trainer (no specific instructions needed)
CPU AVX2 AVX2 x64 CPU trainer (AVX2 instructions needed)
CPU AVX512 AVX512 x64 CPU trainer (AVX512 instructions needed)
CPU SKYLAKE For specific Intel Lake processors (may not be available all the time)

What's needed

The runner on Windows also requires the VC Redistributable, which can be obtained from: https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist?view=msvc-170

The runner on linux needs at least GLIBC 2.34. The CPU where you run the Client must support AVX2 or AVX512 CPU instructions.

Huge Pages

Depending on your environment you might want to enable huge pages. This can increase your iterations per second.

The trainer will tell you what is the optimal setting when it detects a wrong value.

2024-03-16 11:34:13     INFO    Trainer: WARNING: Free number of hugepages is smaller than needed, have: 10 - want: 1612 (52 x number of threads). Falling back to use malloc memory.
2024-03-16 11:34:13     INFO    Trainer: To add more hugepages, please run this command as root before starting the miner
2024-03-16 11:34:13     INFO    Trainer: /usr/sbin/sysctl -w vm.nr_hugepages=1612
2024-03-16 11:34:13     INFO    Trainer: OR: /sbin/sysctl -w vm.nr_hugepages=1612

if you see this, you can run the command /usr/sbin/sysctl -w vm.nr_hugepages=1612 as root or sudo /usr/sbin/sysctl -w vm.nr_hugepages=1612

Command Line Arguments vs. Configuration

You can either start the Client by providing command line arguments or using an appsettings.json file.

Argument Default Value Description
PayoutId NULL The Qubic ID you want to receive the mining payouts if you participate in pool mining
Threads 1 How many threads should be used for the AI Training.
Alias qubic.li Client You can give your Client a Name which will be displayed in the

Windows

You can run the client directly in your Windows. The Client provices a .exe file which can be executed by a double click.

Download the Client from the above link. The Client must not be installed.

Linux Option 1: Screen Session

To run the qubic.li client you can use this streamlined installation guide. Please consider adapt the commands to suit your directory preferences. Note that all commands must be executed as the root user, or you should precede them with the sudo command for proper authorization.

1. Download and Unpack the qli-Client:
Execute the following command to download and extract the qli-Client. This example uses the package qli-Client-1.8.8-Linux-x64.tar.gz. Please ensure you replace it with the latest available version.

mkdir ~/qubic;
cd ~/qubic;
wget https://dl.qubic.li/downloads/qli-Client-1.9.7-Linux-x64.tar.gz;
tar -xvf qli-Client-1.9.7-Linux-x64.tar.gz;
rm qli-Client-1.9.7-Linux-x64.tar.gz;

2. edit and set your appsettings.json according to your preferences

nano appsettings.json

sample appsettings.json for GPU (Client >= 1.9.4):

{
  "Settings": {
    "baseUrl": "https://mine.qubic.li/",
    "accessToken": "YOURACCESSTOKEN",
    "alias": "YOURALIAS",
    "trainer": { "gpu": true, "gpuVersion": "CUDA11" }
  }
}

Note

Please refer to QLI Trainer Options for available gpuVersion values.

sample appsettings.json for GPU (Client < 1.9.4):

{
  "Settings": {
    "baseUrl": "https://mine.qubic.li/",
    "allowHwInfoCollect": true,
    "overwrites": {
      "CUDA": "12"
    },
    "accessToken": "YOURACCESSTOKEN",
    "alias": "YOURALIAS"
  }
}

sample appsettings.json for CPU set to 10 threads:

{
  "Settings": {
    "baseUrl": "https://mine.qubic.li/",
    "overwrites": {},
    "accessToken": "YOURACCESSTOKEN",
    "amountOfThreads": 10,
    "alias": "YOURALIAS"
  }
}

3. run qli-Client in a screen session named "qubic"

screen -S qubic ./qli-Client

basic screen commands:

  • exit screen : ctrl a + d
  • kill screen : ctrl + c
  • display qubic screen: screen -r qubic

Linux Option 2 (expert): Systemd Linux Service

To install the qubic.li Service you can use our quick installation guide. Please consider to check the content of the service installation script. All commands should either be executed by root or you need to prepend the sudo command.

The installerscript places all qubic.li stuff in /q.

Ubuntu 22.04

Don't forget to replace the token from the below examples with your own.

# update your sources
apt update
# download service installation script with autoupdate
# wget -O qli-Service-install.sh https://dl.qubic.li/cloud-init/qli-Service-install-auto.sh
# download service installation script without auto update
wget -O qli-Service-install.sh https://dl.qubic.li/cloud-init/qli-Service-install.sh
# set the script as executable
chmod u+x qli-Service-install.sh
# install qubic.li client as systemd service
# Syntax: qli-Service-install.sh <threads> <accessToken|payoutId> [alias]
./qli-Service-install.sh 2 eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJJZCI6ImMyYmUyNTVkLWRkNzAtNDE4Mi04MDdkLWM1M2M5Yjc5ZDgyNiIsIk1pbmluZyI6IiIsIm5iZiI6MTcwNDczODc4NSwiZXhwIjoxNzM2Mjc0Nzg1LCJpYXQiOjE3MDQ3Mzg3ODUsImlzcyI6Imh0dHBzOi8vcXViaWMubGkvIiwiYXVkIjoiaHR0cHM6Ly9xdWJpYy5saS8ifQ.j8oI56OqV-gjoHxacwegetd2nha1zHLfSjW-REcNsp8q0lWW-NbvClPIuy_nig-YqpbyPXRPAZvYjh1SUjkw7g

for ubuntu 20.04 you might need to install a more recent libc version.

# add repo (use a mirror near your location from: https://packages.ubuntu.com/jammy/amd64/libc6/download)
echo "deb http://cz.archive.ubuntu.com/ubuntu jammy main" >> /etc/apt/sources.list
apt update
apt install libc6
apt install -y g++-11

Debian 12

# download service installation script with autoupdate
# wget -O qli-Service-install.sh https://dl.qubic.li/cloud-init/qli-Service-install-auto.sh
# download service installation script
wget -O qli-Service-install.sh https://dl.qubic.li/cloud-init/qli-Service-install.sh
# set the script as executable
chmod u+x qli-Service-install.sh
# install qubic.li client as systemd service
# Syntax: qli-Service-install.sh <threads> <accessToken|payoutId> [alias]
./qli-Service-install.sh 2 eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJJZCI6ImMyYmUyNTVkLWRkNzAtNDE4Mi04MDdkLWM1M2M5Yjc5ZDgyNiIsIk1pbmluZyI6IiIsIm5iZiI6MTcwNDczODc4NSwiZXhwIjoxNzM2Mjc0Nzg1LCJpYXQiOjE3MDQ3Mzg3ODUsImlzcyI6Imh0dHBzOi8vcXViaWMubGkvIiwiYXVkIjoiaHR0cHM6Ly9xdWJpYy5saS8ifQ.j8oI56OqV-gjoHxacwegetd2nha1zHLfSjW-REcNsp8q0lWW-NbvClPIuy_nig-YqpbyPXRPAZvYjh1SUjkw7g

for debian 11 you might need to install a more recent libc version.

Redhat Enterprise 8.8

DEPRECATED

# Update packages
sudo yum update
# download service installation script with autoupdate
# wget -O qli-Service-install.sh https://dl.qubic.li/cloud-init/qli-Service-install-auto.sh
# download service installation script
rm qli-Service-install.sh || wget https://dl.qubic.li/cloud-init/qli-Service-install.sh
# set the script as executable
chmod u+x qli-Service-install.sh
# install qubic.li client as systemd service
# Syntax: qli-Service-install.sh <threads> <accessToken|payoutId> [alias]
sudo ./qli-Service-install.sh 2 eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJJZCI6ImMyYmUyNTVkLWRkNzAtNDE4Mi04MDdkLWM1M2M5Yjc5ZDgyNiIsIk1pbmluZyI6IiIsIm5iZiI6MTcwNDczODc4NSwiZXhwIjoxNzM2Mjc0Nzg1LCJpYXQiOjE3MDQ3Mzg3ODUsImlzcyI6Imh0dHBzOi8vcXViaWMubGkvIiwiYXVkIjoiaHR0cHM6Ly9xdWJpYy5saS8ifQ.j8oI56OqV-gjoHxacwegetd2nha1zHLfSjW-REcNsp8q0lWW-NbvClPIuy_nig-YqpbyPXRPAZvYjh1SUjkw7g

Service Monitoring

You can manage your qubic.li Client with the systemd control.

Start Service: systemctl start qli Stop Service: systemctl stop qli Status Service: systemctl status qli

you can also see what is going on by observing the logs. the service logs to /var/log/qli.log or /var/log/qli.error.log.

to live watch it on the console, use tail -f /var/log/qli.log.

sample configuration with token

{
	"Settings": {
		"baseUrl": "https://mine.qubic.li/",
		"amountOfThreads": 16,
		"alias": "Client 3",
		"accessToken": "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJJZCI6ImMyYmUyNTVkLWRkNzAtNDE4Mi04MDdkLWM1M2M5Yjc5ZDgyNiIsIk1pbmluZyI6IiIsIm5iZiI6MTcwNDczODc4NSwiZXhwIjoxNzM2Mjc0Nzg1LCJpYXQiOjE3MDQ3Mzg3ODUsImlzcyI6Imh0dHBzOi8vcXViaWMubGkvIiwiYXVkIjoiaHR0cHM6Ly9xdWJpYy5saS8ifQ.j8oI56OqV-gjoHxacwegetd2nha1zHLfSjW-REcNsp8q0lWW-NbvClPIuy_nig-YqpbyPXRPAZvYjh1SUjkw7g"
	}
}

sample configuration with payout id

{
	"Settings": {
		"baseUrl": "https://mine.qubic.li/",
		"amountOfThreads": 16,
		"alias": "My super miner",
		"payoutId": "VGIWRRNVVRRXSEASPENCIMVNANPCFHAASZVPBIEFLCRYHWSZYSGXHNSBYPVN"
	}
}

Remove Client

To remove the qubic.li Client execute the following commands.

# stop service
systemctl stop qli --no-block
# remove service definition
rm /etc/systemd/system/qli.service
# reload systemd
systemctl daemon-reload
# remove all related files
rm -R /q
rm /var/log/qli.log

HiveOs

HiveOs Instructions

Customizing

Appsettings.json contains the configuration of your client and need to be placed at the same location as the executable.

if you opt for the Linux Screen session (Option 1):

  • you can customize the settings of your client in the settings file ~/qubic/appsettings.json

if you opt for the Systemd Linux Service (Option 2):

  • you can customize the settings of your client in the settings file /q/appsettings.json
  • You can create a custom file with the name appsettings.production.json which has higher priority to be loaded.
Setting Default Value Description
baseUrl https://mine.qubic.li/ The Base Url of the API
amountOfThreads 1 How many threads should be used for the AI Training.
accessToken* JWT Token This is you personal JWT Token which you can obtain from the Control Panel at qubic.li
payoutId* NULL This is the ID you want to get token payout for your found solutions.
alias qli Client You can give your Client a Name which will be displayed in the Control Panel. If empty it uses the Hostname.
allowHwInfoCollect false With that option set to true the client will collect CPU model, CPU Cache Size and RAM Size to get optimal runner for that maschine
threadsDaySchedule empty Can be used to schedule the training. e.g. training should only run during night time.
customRunner false Set this to true to use a custom trainer. The Client will not automatically update runner. Details
serviceLock false Set this to true to use a custom trainer with qiner protocol.
overwrites {} An object to overwrite specific settings. (e.g. "AVX512":false to disable AVX512)
autoupdateEnabled false Set this to true to enable auto update of the service client (from version 1.7.8)
checkUpdateEnabled true Checks if there is a new version of the service client when starting
trainer {} The trainer configuration options

Trainer Options

{
	"cpu": false,
	"cpuVersion": "AVX512",
	"cpuThreads": 16,
	"cpuAffinity": "",
	"cpuVariant": "",
	"gpu": true,
	"gpuVersion": "CUDA11",
	"gpuCards": "",
	"gpuVariant": ""
}
Setting Default Value Description
*cpu false Enable CPU Training
*gpu false Enable GPU Training
cpuVersion AUTO AUTO = it tries to detect your CPU; CPU Version to be used QLI Trainer Options
gpuVersion null GPU Version to be used QLI Trainer Options
cpuThreads 1 Number of Threads used for CPU training
gpuCards null Which GPU Cards should be used (see details below; available from client >=1.9.5 and runner >=105.3)
cpuAffinity null CPU Affinity for CPU training
cpuVariant null Which Variant of CPU trainer should be used
gpuVariant null Which Variant of GPU trainer should be used

*currently only one of both options can be enabled (true)

Note

The gpuCards property can be used to select gThreads. The default configuration is auto tune for all cards.
For each GPU you can use (comma separated):
-1 => auto tune
0 => disable GPU
>0 => number of gThreads to be used

e.g.: 0,-1,-1,-1,-1,-1 => GPU#1 disabled, #1-5 auto tuen
e.g.: 0 => GPU#0 disabled, if there are more, all will be auto tuned
e.g.: 512,256,256,256,256,512 => set gThread to 512 on GPU#0 and GPU#5, 256 to the rest

Troubleshooting

The Client creates a folder log where all error messages are stored. If the Client stops unexpected or doesn't open check if there is a log file with current date and check the error messages.

GPU and WSL doesn't work

The Community showed several solutions to that Problem.

Install GPU drivers in Ubuntu

Try to install the Ubuntu nvidia drivers.

sudo apt update
sudo apt install nvidia-driver
sudo reboot

Disable Mining GPU for Windows

If you have a second GPU (e.g. from your processor) you can try to disable your mining GPU for windows and let windows use the second GPU to render your windows.

AVX CPU (Intel) not working

Somtimes the detection of AVX2/AVX512 is not accurate and it loads the wrong trainer. If this happens to you, you can enforce certain configuration.

Enforce SKYLAKE

add "SKYLAKE": true to overwrites in appsettings.json

{
	"Settings": {
		"....": "..."
		"overwrites": {
			"SKYLAKE": true
		}
	}
}

Enforce AVX2

add "AVX512": false to overwrites in appsettings.json

{
	"Settings": {
		"....": "..."
		"overwrites": {
			"AVX512": false
		}
	}
}

Reset Configuration

if your trainer isn't working properly. try the following to reset local configuration:

# stop trainer
systemctl stop qli --no-block
# ensure that all qli services are stopped/killed
pkill -f qli
# delete any existing configuration lock
rm /q/*.lock
# delete current runner
rm /q/qli-runner
# delete old solutions
find /q/. -maxdepth 1 -regextype posix-extended -regex '.*\.e[[:digit:]]+' -delete
# delete state files
find /q/. -maxdepth 1 -regextype posix-extended -regex 'state\.[[:digit:]]+' -delete
# start trainer
systemctl start qli --no-block

Reset Server

if you think the client reports wrong or random hashrate you could restart your server. Or stop all qli services. (e.g. for linux: systemctl stop qli --no-block && pkill -f qli && systemctl start qli)

Possible Optimizations

Every specific CPU or general Hardware configuration can need speific performance settings. Depending on your Setup you can try:

  1. Enable/Disable SMT/HT in Bios
  2. Choose another runner via Webinterface: https://app.qubic.li/main/mining/control
  3. Enabled/Disable Performance Boost (Windows)
  4. Enable/Disable specific Power Schema (Ubuntu)
  5. Add/Remove wine in linux. (for ubuntu: apt install wine -y or apt autoremove wine -y
  6. Adjust Threads to your needs. Sometimes less threads is more effective thatn to many.

client's People

Contributors

akare123 avatar eloword avatar frog-rabbit avatar j0et0m avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

client's Issues

1.7.7bug error[root@localhost q]# ./qli-Client 2023-12-09 21:12:24 INFO Starting Client 1.7.7.0 2023-12-09 21:12:27 INFO AI Training Starting. Your Alias is P2 2023-12-09 21:12:27 INFO Waiting for task 2023-12-09 21:12:29 INFO Please wait while we are preparing the worker 2023-12-09 21:13:28 ERROR Looks like the trainer isn't working properly :( check your config and he requirements. 2023-12-09 21:13:30 INFO Waiting for task

[root@localhost q]# ./qli-Client
2023-12-09 21:12:24 INFO Starting Client 1.7.7.0
2023-12-09 21:12:27 INFO AI Training Starting. Your Alias is P2
2023-12-09 21:12:27 INFO Waiting for task
2023-12-09 21:12:29 INFO Please wait while we are preparing the worker
2023-12-09 21:13:28 ERROR Looks like the trainer isn't working properly :( check your config and he requirements.
2023-12-09 21:13:30 INFO Waiting for task

INFO E:98 | SOL: 0/0 | Try IFWM...FZIF | 0 it/s | 0 avg it/s

W11, VC Redistributable installed
CPU : Xeon W2123
App is stuck in a loop, continuously repeating :

2024-03-06 00:24:38     INFO    Trainer: cpu version 98.0 is starting.
2024-03-06 00:24:38     INFO    Trainer: Version: AVX512(Modern)
2024-03-06 00:24:38     INFO    Trainer: Solution threshold: 694
2024-03-06 00:24:38     INFO    Trainer: 7 threads are used.
2024-03-06 00:24:40     INFO    E:98 | SOL: 0/0 | Try AOUJ...TYCA  | 0 it/s | 0 avg it/s

1.7.5 error 1.7.5 error 1.7.5 error 1.7.5 error SOS SOS SOS

2023-12-09 00:44:51 INFO Starting Client 1.7.5.0
2023-12-09 00:44:53 INFO AI Training Starting. Your Alias is qubic.li Client
2023-12-09 00:44:53 INFO Waiting for task
2023-12-09 00:44:55 INFO Please wait while we are preparing the worker
2023-12-09 00:44:57 INFO Error loading current trainer binary
2023-12-09 00:44:58 INFO Waiting for task
2023-12-09 00:45:59 ERROR Looks like the trainer isn't working properly :( check your config.

system:rocky linux 9.2/ ubuntu 22.04 server /centos 9 None of them can be used

ubuntu 23OK。。。。。Please fix the bug as soon as possible, as many machines are already unusable

connection error

2023-10-27 09:37:40 INFO Waiting for task
2023-10-27 09:38:42 ERROR Looks like the trainer isn't working properly :( check your config.
2023-10-27 09:38:43 INFO Waiting for task

problem

2024-03-06 00:43:37 ERROR Execution stopped(FATAL: Please do not use accessToken AND payoutID)

System.Exception: FATAL: Please do not use accessToken AND payoutID
at li.qubic.trainer.Trainer.VerifyStartup()
at li.qubic.trainer.Trainer..ctor(String token)
at Program.Main(String[] args)
at li.qubic.trainer.Trainer.VerifyStartup()
at li.qubic.trainer.Trainer..ctor(String token)
at Program.Main(String[] args)
2024-03-06 00:46:27 ERROR Looks like the trainer isn't working properly :( check your config and he requirements.
2024-03-06 00:46:27 ERROR General error: An error occurred trying to start process 'ldd' with working directory 'C:\Users\rosar\Downloads\qli-Client-1.8.5-Windows-x64'. Impossibile trovare il file specificato.(An error occurred trying to start process 'ldd' with working directory 'C:\Users\rosar\Downloads\qli-Client-1.8.5-Windows-x64'. Impossibile trovare il file specificato.)

System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'ldd' with working directory 'C:\Users\rosar\Downloads\qli-Client-1.8.5-Windows-x64'. Impossibile trovare il file specificato.
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo)
at li.qubic.trainer.Helper.HardwareHelper.GetLibcVersion()
at li.qubic.trainer.Trainer.CheckLocalTrainer()
at li.qubic.trainer.Trainer.Start()
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo)
at li.qubic.trainer.Helper.HardwareHelper.GetLibcVersion()
at li.qubic.trainer.Trainer.CheckLocalTrainer()
at li.qubic.trainer.Trainer.Start()
2024-03-06 00:47:28 ERROR Looks like the trainer isn't working properly :( check your config and he requirements.
2024-03-06 00:47:28 ERROR General error: An error occurred trying to start process 'ldd' with working directory 'C:\Users\rosar\Downloads\qli-Client-1.8.5-Windows-x64'. Impossibile trovare il file specificato.(An error occurred trying to start process 'ldd' with working directory 'C:\Users\rosar\Downloads\qli-Client-1.8.5-Windows-x64'. Impossibile trovare il file specificato.)

System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'ldd' with working directory 'C:\Users\rosar\Downloads\qli-Client-1.8.5-Windows-x64'. Impossibile trovare il file specificato.
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo)
at li.qubic.trainer.Helper.HardwareHelper.GetLibcVersion()
at li.qubic.trainer.Trainer.CheckLocalTrainer()
at li.qubic.trainer.Trainer.Start()
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo)
at li.qubic.trainer.Helper.HardwareHelper.GetLibcVersion()
at li.qubic.trainer.Trainer.CheckLocalTrainer()
at li.qubic.trainer.Trainer.Start()
2024-03-06 00:48:29 ERROR Looks like the trainer isn't working properly :( check your config and he requirements.
2024-03-06 00:48:29 ERROR General error: An error occurred trying to start process 'ldd' with working directory 'C:\Users\rosar\Downloads\qli-Client-1.8.5-Windows-x64'. Impossibile trovare il file specificato.(An error occurred trying to start process 'ldd' with working directory 'C:\Users\rosar\Downloads\qli-Client-1.8.5-Windows-x64'. Impossibile trovare il file specificato.)

System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'ldd' with working directory 'C:\Users\rosar\Downloads\qli-Client-1.8.5-Windows-x64'. Impossibile trovare il file specificato.
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo)
at li.qubic.trainer.Helper.HardwareHelper.GetLibcVersion()
at li.qubic.trainer.Trainer.CheckLocalTrainer()
at li.qubic.trainer.Trainer.Start()
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo)
at li.qubic.trainer.Helper.HardwareHelper.GetLibcVersion()
at li.qubic.trainer.Trainer.CheckLocalTrainer()
at li.qubic.trainer.Trainer.Start()

Looks like the trainer isn't working properly :( check your config and he requirements.

root@t-Default-string:/q# cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 158
model name : Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz
stepping : 10
microcode : 0xf4
cpu MHz : 900.437
cache size : 12288 KB
physical id : 0
siblings : 12
core id : 0
cpu cores : 6
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 22
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d arch_capabilities
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs taa itlb_multihit srbds mmio_stale_data retbleed gds
bogomips : 6399.96
clflush size : 64
cache_alignment : 64
address sizes : 39 bits physical, 48 bits virtual
power management:

processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 158
model name : Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz
stepping : 10
microcode : 0xf4
cpu MHz : 900.465
cache size : 12288 KB
physical id : 0
siblings : 12
core id : 1
cpu cores : 6
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 22
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d arch_capabilities
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs taa itlb_multihit srbds mmio_stale_data retbleed gds
bogomips : 6399.96
clflush size : 64
cache_alignment : 64
address sizes : 39 bits physical, 48 bits virtual
power management:

root@t-Default-string:/q# ./qli-Client
2024-03-05 21:31:33 INFO Starting Client 1.8.6.0
2024-03-05 21:31:33 INFO Check for updates
2024-03-05 21:31:34 INFO Your Client is up to date
2024-03-05 21:31:35 INFO AI Training Starting. Your Alias is ubuntu-10.255.70.111
2024-03-05 21:31:35 INFO Waiting for task
2024-03-05 21:32:36 ERROR Looks like the trainer isn't working properly :( check your config and he requirements.
2024-03-05 21:32:37 INFO Waiting for task
2024-03-05 21:33:38 ERROR Looks like the trainer isn't working properly :( check your config and he requirements.
2024-03-05 21:33:39 INFO Waiting for task
2024-03-05 21:34:40 ERROR Looks like the trainer isn't working properly :( check your config and he requirements.
2024-03-05 21:34:41 INFO Waiting for task
2024-03-05 21:35:42 ERROR Looks like the trainer isn't working properly :( check your config and he requirements.
2024-03-05 21:35:43 INFO Waiting for task
^C2024-03-05 21:36:36 INFO Stopping...

General error: An error occurred trying to start process 'ldd' with working directory

Looks like the trainer isn't working properly :(
2024-03-06 01:05:20 ERROR We try to restart. If it keeps like that consider using another trainer or setting.
2024-03-06 01:05:21 ERROR Looks like the trainer isn't working properly :( check your config and he requirements.
2024-03-06 01:05:21 ERROR General error: An error occurred trying to start process 'ldd' with working directory 'D:\qli-Client-1.8.5-Windows-x64'. 系统找不到指定的文件。(An error occurred trying to start process 'ldd' with working directory 'D:\qli-Client-1.8.5-Windows-x64'. 系统找不到指定的文件。)

A few questions

Hi, I have a few questions here.

  1. My access token on https://app.qubic.li/main/mining/pool changes every time I refresh the page, then which token should I put in the config file for qublic client?

  2. I tried to use the wallet id for the client, it has been running for 10 hours now but it still says SOL 0/0, and there are 0 qubic on my wallet, is that normal? My CPU is AMD Ryzen 9 7950X, what hash rate should I expect and for how long I get one solution?

Thanks

Running error, there are no issues with the settings. The same computer can run before

2023-12-27 03:18:18 INFO Starting Client 1.7.9.1
2023-12-27 03:18:19 INFO Check for updates
2023-12-27 03:18:20 ERROR Error Checking for updates: API CheckUpdate Error: NoContent
2023-12-27 03:18:22 INFO AI Training Starting. Your Alias is 1477
2023-12-27 03:18:22 INFO Waiting for task
2023-12-27 03:18:24 INFO Please wait while we are preparing the worker
2023-12-27 03:18:26 INFO Error loading current trainer binary
2023-12-27 03:18:27 INFO Waiting for task
2023-12-27 03:18:29 INFO Please wait while we are preparing the worker
2023-12-27 03:18:32 INFO Error loading current trainer binary
2023-12-27 03:18:33 INFO Waiting for task
2023-12-27 03:18:35 INFO Please wait while we are preparing the worker
2023-12-27 03:18:38 INFO Error loading current trainer binary
2023-12-27 03:18:39 INFO Waiting for task
2023-12-27 03:18:41 INFO Please wait while we are preparing the worker
2023-12-27 03:18:44 INFO Error loading current trainer binary
2023-12-27 03:18:45 INFO Waiting for task
2023-12-27 03:18:47 INFO Please wait while we are preparing the worker
2023-12-27 03:18:50 INFO Error loading current trainer binary
2023-12-27 03:18:51 INFO Waiting for task
2023-12-27 03:18:53 INFO Please wait while we are preparing the worker
2023-12-27 03:18:55 INFO Error loading current trainer binary
2023-12-27 03:18:56 INFO Waiting for task
2023-12-27 03:18:58 INFO Please wait while we are preparing the worker
2023-12-27 03:18:59 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:00 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:01 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:02 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:03 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:04 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:05 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:06 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:07 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:08 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:09 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:10 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:11 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:12 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:13 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:14 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:15 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:16 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:17 INFO Calculating Checksum (Trainer/16)
2023-12-27 03:19:20 INFO Error loading current trainer binary
2023-12-27 03:19:21 INFO Waiting for task
2023-12-27 03:19:23 INFO Please wait while we are preparing the worker
2023-12-27 03:19:25 INFO Error loading current trainer binary
2023-12-27 03:19:26 INFO Waiting for task
2023-12-27 03:19:29 INFO Please wait while we are preparing the worker
2023-12-27 03:19:31 ERROR Error Getting Worker BadRequest with {"type":"https://tools.ietf.org/html/rfc7231#section-6.5.1","title":"Bad Request","status":400,"traceId":"00-73c3ad6fb45a1aff60998d59f686dac1-becbbbe7f12743fc-00"}
2023-12-27 03:19:31 INFO Error loading current trainer binary
2023-12-27 03:19:32 INFO Waiting for task
2023-12-27 03:19:34 INFO Please wait while we are preparing the worker
2023-12-27 03:19:38 INFO Error loading current trainer binary
2023-12-27 03:19:39 INFO Waiting for task
2023-12-27 03:19:41 INFO Please wait while we are preparing the worker
2023-12-27 03:19:43 INFO Error loading current trainer binary
2023-12-27 03:19:44 INFO Waiting for task
2023-12-27 03:19:46 INFO Please wait while we are preparing the worker
2023-12-27 03:19:49 INFO Error loading current trainer binary
2023-12-27 03:19:50 INFO Waiting for task
2023-12-27 03:19:52 INFO Please wait while we are preparing the worker
2023-12-27 03:19:55 INFO Error loading current trainer binary
2023-12-27 03:19:56 INFO Waiting for task
2023-12-27 03:19:58 INFO Please wait while we are preparing the worker
2023-12-27 03:20:00 INFO Error loading current trainer binary
2023-12-27 03:20:02 INFO Waiting for task

Trouble with version 1.8

2024-01-01 12:46:38     INFO    Starting Client 1.8.0.0
2024-01-01 12:46:38     INFO    Check for updates
2024-01-01 12:46:40     INFO    Your Client is up to date
2024-01-01 12:46:41     INFO    AI Training Starting. Your Alias is qli Client
2024-01-01 12:46:41     INFO    Waiting for task
2024-01-01 12:47:41     ERROR   Looks like the trainer isn't working properly :( check your config and he requirements.
2024-01-01 12:47:42     INFO    Waiting for task

repeatable error, can't find solution

my conf file:

{
  "Settings": {
    "baseUrl": "https://mine.qubic.li/",
    "amountOfThreads": 4,
    "alias": "qli Client",
    "accessToken": "accessToken">
    "payoutId": null,
    "useAvx2": false,
    "allowHwInfoCollect": true,
    "threadsDaySchedule": "",
    "customRunner": false,
    "serviceLock": false,
    "overwrites": {},
    "autoupdateEnabled": true,
    "checkUpdateEnabled": true
  }
}

hardware:

Architecture:            x86_64
  CPU op-mode(s):        32-bit, 64-bit
  Address sizes:         48 bits physical, 48 bits virtual
  Byte Order:            Little Endian
CPU(s):                  16
  On-line CPU(s) list:   0-15
Vendor ID:               AuthenticAMD
  Model name:            AMD Opteron(tm) Processor 4284
    CPU family:          21
    Model:               1
    Thread(s) per core:  2
    Core(s) per socket:  4
    Socket(s):           2
    Stepping:            2

I tried switching between sockets, by core. I tried docker, strictly regulating the packages, but nothing worked.
Need your help

GPU mode does not work

375d0f3e0556c666421f6e34629f2fd
Weixin Image_20240224110909

Error Info:
0 CUDA devices are used

GPU Devices: 6 pieces of Nvidia 3070
GPU Driver Version: 551.61
CUDA Version: 12.4
Operation System: Windows 10 -> WSL Ubuntu
Environment Variables: CUDA_VISIBLE_DEVICES=0,1,2,3,4,5

appsettings.json:
"allowHwInfoCollect": true,
"overwrites": {"CUDA": "12"}

Questions:
Is it possible to mine on GPU mode?

1.7.7 error BUG

[root@localhost q]# ./qli-Client
2023-12-09 21:12:24 INFO Starting Client 1.7.7.0
2023-12-09 21:12:27 INFO AI Training Starting. Your Alias is P2
2023-12-09 21:12:27 INFO Waiting for task
2023-12-09 21:12:29 INFO Please wait while we are preparing the worker
2023-12-09 21:13:28 ERROR Looks like the trainer isn't working properly :( check your config and he requirements.
2023-12-09 21:13:30 INFO Waiting for task

system:centos rocky linux

Why does my machine keep outputting this information:Trainer: cpu version 99.1 is starting.

2024-03-07 09:42:51 INFO Starting Client 1.8.6.0
2024-03-07 09:42:51 INFO Check for updates
2024-03-07 09:42:53 INFO Your Client is up to date
2024-03-07 09:42:54 INFO AI Training Starting. Your Alias is yl-PowerEdge-R720
2024-03-07 09:42:54 INFO Waiting for task
2024-03-07 09:42:56 INFO Trainer: cpu version 99.1 is starting.
2024-03-07 09:42:56 INFO Trainer: Version: AVX2
2024-03-07 09:43:01 INFO Trainer: cpu version 99.1 is starting.
2024-03-07 09:43:01 INFO Trainer: Version: AVX2
2024-03-07 09:43:06 INFO Trainer: cpu version 99.1 is starting.
2024-03-07 09:43:06 INFO Trainer: Version: AVX2
2024-03-07 09:43:11 INFO Trainer: cpu version 99.1 is starting.
2024-03-07 09:43:11 INFO Trainer: Version: AVX2
2024-03-07 09:43:16 INFO Trainer: cpu version 99.1 is starting.
2024-03-07 09:43:16 INFO Trainer: Version: AVX2

2xAMD EPYC 7742 Not Working Properly

I have 128C/256T, 256GB RAM and 4 NUMA but my performance is extremely low:
"amountOfThreads": 32 = 500 it/s
"amountOfThreads": 64 = 300 it/s
"amountOfThreads": 128/256 = 200 it/s and system stutter

Do you have any ideas on this?

dual xeon hashrate issues

dual xeon e5 2696v3 it/s sometimes varies in each run and during mining from, from 15-25 it/s not more, to 79 i/s max,
i have to execute repeatedly to get that 79 it/s , and during mining it happens to

1.7.5 BUGBUGBUG SOSOSOSOSOSOSOSOS

只有乌班图23可以运行
乌班图22.04服务器版本 rocky linux 在1.7下运行正常。现在1.7无法使用。
1.7.5 报错
2023-12-09 00:44:51 INFO Starting Client 1.7.5.0
2023-12-09 00:44:53 INFO AI Training Starting. Your Alias is qubic.li Client
2023-12-09 00:44:53 INFO Waiting for task
2023-12-09 00:44:55 INFO Please wait while we are preparing the worker
2023-12-09 00:44:57 INFO Error loading current trainer binary
2023-12-09 00:44:58 INFO Waiting for task
2023-12-09 00:45:59 ERROR Looks like the trainer isn't working properly :( check your config.

Client 1.8.6.0 ERROR

win11 23h2 wls2 ubuntu 22.04.3lts(cpu:i7-13650hx)

appsettings:
{
"Settings": {
"baseUrl": "https://ai.diyschool.ch/",
"amountOfThreads": 18,
"alias": "p15ta",
"payoutId": "xxx",
"accessToken": null
}
}

logs:
2024-02-29 14:10:17 INFO Starting Client 1.8.6.0
2024-02-29 14:10:22 INFO Check for updates
2024-02-29 14:10:29 INFO Your Client is up to date
2024-02-29 14:10:32 INFO AI Training Starting. Your Alias is p15ta
2024-02-29 14:10:32 INFO Waiting for task
2024-02-29 14:10:34 INFO Please wait while we are preparing the worker
2024-02-29 14:10:42 INFO Trainer: cpu version 98.0 is starting.
2024-02-29 14:10:42 INFO Trainer: Version: AVX2
2024-02-29 14:10:42 INFO Trainer: Solution threshold: 694
2024-02-29 14:10:42 INFO Trainer: 18 threads are used.
2024-02-29 14:10:43 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 200 it/s | 200 avg it/s
2024-02-29 14:10:44 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 284 it/s | 242 avg it/s
2024-02-29 14:10:45 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 292 it/s | 259 avg it/s
2024-02-29 14:10:46 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 276 it/s | 263 avg it/s
2024-02-29 14:10:47 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 292 it/s | 269 avg it/s
2024-02-29 14:10:48 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 219 it/s | 260 avg it/s
2024-02-29 14:10:49 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 260 it/s | 260 avg it/s
2024-02-29 14:10:50 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 300 it/s | 265 avg it/s
2024-02-29 14:10:51 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 264 it/s | 265 avg it/s
2024-02-29 14:10:52 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 304 it/s | 269 avg it/s
2024-02-29 14:10:53 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 272 it/s | 269 avg it/s
2024-02-29 14:10:54 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 288 it/s | 271 avg it/s
2024-02-29 14:10:55 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 280 it/s | 272 avg it/s
2024-02-29 14:10:56 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 340 it/s | 276 avg it/s
2024-02-29 14:10:57 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 263 it/s | 276 avg it/s
2024-02-29 14:10:58 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 244 it/s | 274 avg it/s
2024-02-29 14:10:59 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 276 it/s | 274 avg it/s
2024-02-29 14:11:00 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 272 it/s | 274 avg it/s
2024-02-29 14:11:01 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 236 it/s | 272 avg it/s
2024-02-29 14:11:02 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 260 it/s | 271 avg it/s
2024-02-29 14:11:03 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 292 it/s | 272 avg it/s
2024-02-29 14:11:04 INFO E:98 | SOL: 0/0 | Try HGTS...CUOF | 280 it/s | 272 avg it/s

May I ask what the problem is?

The system is Ubuntu 22.04, which was normal before this upgrade, but after the upgrade, there was a problem, and the re-installation did not boot

image
image

Client 1.7.7.0 error

2023-12-12 22:03:00 INFO Starting Client 1.7.7.0
2023-12-12 22:03:01 ERROR Feature Registration Request Failed(API Register Error: Unauthorized)

GLIBC Error

Hi

I have this error :

023-12-12 21:20:17 ERROR Looks like the trainer isn't working properly :( check your config and he requirements.
2023-12-12 21:20:17 ERROR GLIBC Version must by >= 2.34
2023-12-12 21:20:17 ERROR General error: FATAL: GLIBC Version must by >= 2.34. Trainer can't be started properly.(FATAL: GLIBC Version must by >= 2.34. Trainer can't be started properly.)

Perhaps my verison of glibc is 2.35
ufox@rig-pincab:~/qubic$ ldd --version
ldd (Ubuntu GLIBC 2.35-0ubuntu3.5) 2.35

Thanks

Error Checking for updates: API CheckU

2023-12-20 11:28:41 INFO Starting Client 1.7.9.1
2023-12-20 11:28:42 INFO Check for updates
2023-12-20 11:28:44 ERROR Error Checking for updates: API CheckU
pdate Error: NoContent

Looks like the trainer isn't working properly :( check your config and he requirements.

  CPU op-mode(s):        32-bit, 64-bit
  Address sizes:         39 bits physical, 48 bits virtual
  Byte Order:            Little Endian
CPU(s):                  6
  On-line CPU(s) list:   0-5
Vendor ID:               GenuineIntel
  Model name:            Intel(R) Core(TM) i5-9600K CPU @ 3.70GHz
    CPU family:          6
    Model:               158
    Thread(s) per core:  1
    Core(s) per socket:  6
    Socket(s):           1
    Stepping:            12
    CPU(s) scaling MHz:  17%
    CPU max MHz:         4600.0000
    CPU min MHz:         800.0000
    BogoMIPS:            7399.70
    Flags:               fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush d
                         ts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc
                         art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pn
                         i pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm p
                         cid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdran
                         d lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp t
                         pr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust sgx bmi1 avx2 smep bmi
                         2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xs
                         aves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp vnmi sgx_lc md
                         _clear flush_l1d arch_capabilities
Virtualization features:
  Virtualization:        VT-x
Caches (sum of all):
  L1d:                   192 KiB (6 instances)
  L1i:                   192 KiB (6 instances)
  L2:                    1.5 MiB (6 instances)
  L3:                    9 MiB (1 instance)
NUMA:
  NUMA node(s):          1
  NUMA node0 CPU(s):     0-5
Vulnerabilities:
  Gather data sampling:  Mitigation; Microcode (locked)
  Itlb multihit:         KVM: Mitigation: VMX disabled
  L1tf:                  Not affected
  Mds:                   Mitigation; Clear CPU buffers; SMT disabled
  Meltdown:              Not affected
  Mmio stale data:       Mitigation; Clear CPU buffers; SMT disabled
  Retbleed:              Mitigation; IBRS
  Spec rstack overflow:  Not affected
  Spec store bypass:     Mitigation; Speculative Store Bypass disabled via prctl
  Spectre v1:            Mitigation; usercopy/swapgs barriers and __user pointer sanitization
  Spectre v2:            Mitigation; IBRS, IBPB conditional, STIBP disabled, RSB filling, PBRSB-eIBRS Not
                         affected
  Srbds:                 Mitigation; Microcode
  Tsx async abort:       Mitigation; TSX disabled

{
  "Settings": {
    "baseUrl": "https://mine.qubic.li/",
    "amountOfThreads": 3,
    "payoutId": null,
    "accessToken": "$TOKEN",
    "alias": "pc_cpu_intel1",
    "useAvx2": true,
    "overwrites": {
	    "SKYLAKE": true,
	    "AVX512": false
    }
  }
}

Windows 11 Errore

at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError , String ) at System.Net.Sockets.Socket.Accept() at System.Net.Sockets.TcpListener.AcceptTcpClient() at li.qubic.trainer.Comm.ComConnector.<StartServer>b__11_0() at System.Threading.Tasks.Task.InnerInvoke() at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread , ExecutionContext , ContextCallback , Object ) --- End of stack trace from previous location --- at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& , Thread ) --- End of stack trace from previous location --- at li.qubic.trainer.Comm.ComConnector.StartServer() at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError , String ) at System.Net.Sockets.Socket.Accept() at System.Net.Sockets.TcpListener.AcceptTcpClient() at li.qubic.trainer.Comm.ComConnector.<StartServer>b__11_0() at System.Threading.Tasks.Task.InnerInvoke() at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread , ExecutionContext , ContextCallback , Object ) --- End of stack trace from previous location --- at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& , Thread ) --- End of stack trace from previous location --- at li.qubic.trainer.Comm.ComConnector.StartServer() 2023-11-23 12:47:47 ERROR Looks like the trainer isn't working properly :( check your config.

this is my conf

{
"Settings": {
"baseUrl": "https://ai.diyschool.ch/",
"amountOfThreads": 32,
"payoutId": null,
"accessToken": "",
"alias": ""
}
}

I have 4 servers, on two it works correctly, while on the others it doesn't. What could it be?

A GPU0 error occurred when multiple Gpus were working

Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz x1
Mem 16GB
GPUs 3080 10GiB X10

ubuntu20.04 LTS
qubic-li 1.8.6

{"Settings":{"baseUrl": "https://mine.qubic.li/","amountOfThreads": 1,"alias": "test","allowHwInfoCollect": true,"overwrites": {"CUDA": "12"},"accessToken": "xxx", "autoupdateEnabled": true}}

Err
Trainer: Failed to compute solutions on GPU#0: an illegal memory access was encountered
Trainer: Check your OC settings, physical connection between GPU#0 and mainboard
Trainer: TIPS: recommend PCIe x8 or x16 bandwidth on GPU#0, low OC setting on GPU#0

I tried to mask the video card one by one, but the error still appeared

Ubuntu server

Use Ubuntu server to appear:
ERROR Looks like the trainer isn't working properly :( check your config.

Is the project unable to use the multiway CPU

The type initializer for 'System.Management.WmiNetUtilsHelper' threw an exception when trying to use CUDA

Windows, CUDA 12.3 installed, RTX 3060 - when trying to run with GPU, it throws this exception and start training using CPU.

2024-03-14 11:50:32     INFO    Starting Client 1.8.7.1
2024-03-14 11:50:32     INFO    Check for updates
2024-03-14 11:50:32     INFO    Your Client is up to date
System.TypeInitializationException: The type initializer for 'System.Management.WmiNetUtilsHelper' threw an exception.
 ---> System.TypeLoadException
   at System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointerInternal(IntPtr, Type)
   at System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointer[TDelegate](IntPtr)
   at System.Management.WmiNetUtilsHelper.LoadDelegate[TDelegate](TDelegate&, IntPtr, String)
   at System.Management.WmiNetUtilsHelper..cctor()
   --- End of inner exception stack trace ---
   at System.Management.MTAHelper.IsNoContextMTA()
   at System.Management.MTAHelper.CreateInMTA(Type)
   at System.Management.ManagementPath.CreateWbemPath(String)
   at System.Management.ManagementObjectSearcher..ctor(String, String)
   at li.qubic.trainer.Helper.HardwareHelper.GetCpuModelWindows()
   at li.qubic.trainer.Helper.HardwareHelper.GetCPUModel()
System.TypeInitializationException: The type initializer for 'System.Management.WmiNetUtilsHelper' threw an exception.
 ---> System.TypeLoadException
   at System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointerInternal(IntPtr, Type)
   at System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointer[TDelegate](IntPtr)
   at System.Management.WmiNetUtilsHelper.LoadDelegate[TDelegate](TDelegate&, IntPtr, String)
   at System.Management.WmiNetUtilsHelper..cctor()
   --- End of inner exception stack trace ---
   at System.Management.MTAHelper.IsNoContextMTA()
   at System.Management.MTAHelper.CreateInMTA(Type)
   at System.Management.ManagementPath.CreateWbemPath(String)
   at li.qubic.trainer.Helper.HardwareHelper.GetCPUCacheWindows()
   at li.qubic.trainer.Helper.HardwareHelper.GetCPUCache()

When I turn on "allowHwInfoCollect" : "true" I get an exception

I have a 4090. Any idea why? If I don't it runs with no exceptions. Thanks

2024-03-14 11:44:00     INFO    Starting Client 1.8.7.1
2024-03-14 11:44:00     INFO    Check for updates
2024-03-14 11:44:00     INFO    Your Client is up to date
System.TypeInitializationException: The type initializer for 'System.Management.WmiNetUtilsHelper' threw an exception.
 ---> System.TypeLoadException
   at System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointerInternal(IntPtr, Type)
   at System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointer[TDelegate](IntPtr)
   at System.Management.WmiNetUtilsHelper.LoadDelegate[TDelegate](TDelegate&, IntPtr, String)
   at System.Management.WmiNetUtilsHelper..cctor()
   --- End of inner exception stack trace ---
   at System.Management.MTAHelper.IsNoContextMTA()
   at System.Management.MTAHelper.CreateInMTA(Type)
   at System.Management.ManagementPath.CreateWbemPath(String)
   at System.Management.ManagementObjectSearcher..ctor(String, String)
   at li.qubic.trainer.Helper.HardwareHelper.GetCpuModelWindows()
   at li.qubic.trainer.Helper.HardwareHelper.GetCPUModel()
System.TypeInitializationException: The type initializer for 'System.Management.WmiNetUtilsHelper' threw an exception.
 ---> System.TypeLoadException
   at System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointerInternal(IntPtr, Type)
   at System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointer[TDelegate](IntPtr)
   at System.Management.WmiNetUtilsHelper.LoadDelegate[TDelegate](TDelegate&, IntPtr, String)
   at System.Management.WmiNetUtilsHelper..cctor()
   --- End of inner exception stack trace ---
   at System.Management.MTAHelper.IsNoContextMTA()
   at System.Management.MTAHelper.CreateInMTA(Type)
   at System.Management.ManagementPath.CreateWbemPath(String)
   at li.qubic.trainer.Helper.HardwareHelper.GetCPUCacheWindows()
   at li.qubic.trainer.Helper.HardwareHelper.GetCPUCache()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.