Wonder why Alienware even installed RST on the laptop which had a single SDD and no room for a rotating drive.
Since I'm getting no value, and it's just taking up resources, I should uninstall RST.
Wonder why Alienware even installed RST on the laptop which had a single SDD and no room for a rotating drive.
Since I'm getting no value, and it's just taking up resources, I should uninstall RST.
Hi all, I recently added a DX38BT motherboard that previously ran a fedora system in uefi but I can not remove it from the boot list I try that whenever I start the pc I have to press F10 and choose the boot.
Please someone guide me!
From this already grateful
Hello el34,
Thank you for your response,
Upon review of the information and the system you currently have I was able to validate that your system has only driver support up until Windows* 8. This means that there are currently no available drivers for your graphics controller and it could perfectly be a driver issue.
I would recommend you to try using either Windows* 7 or Windows* 8 which are the ones supported and validated by the manufacturer and then from there try to run the game and see if the performance improves. Also, make sure to download the latest graphics driver for your system from the manufacturer.
Regards,
David V
Hello popoxee,
Thank you for your response,
I need the information to be posted here in this thread so we can review it and proceed to do further research and attempt to fix the problem.
Regards,
David V
Thanks for the suggestion.
I did go into the BIOS and system setup, following your setup.
And also went to low power mode on power plan and bios.
Still reached 100c with 4k and games. Suffered huge loss in performance, some stuttering in both game and 4k video. Internet speeds 120Mbps/12Mbps
And frames per second in game, went from 160 to 22 in 1280x720 resolution.
I'm not sure if this is standard for my mini pc or if it's defective, but it's a nightmare. Invested a lot of money into this setup.
Hello radorbk,
First, let me provide you with some information on the system, according to the system model, is under EOIS, you can verify this on the following pages:
https://www.intel.com/content/www/us/en/support/articles/000020015/server-products.html
I am going to try and find as much information to help you with your question.
I also invite you to move the thread to the Discontinued section of the Community for the current interaction or future ones.
According to the reference manual for the SR2520SAXSR on page 50, was tested up to SAS-300 only for the onboard RAID controller, if you will like to use the 2 TB HDD then you will need a RAID Controller
If there is anything else we can help please feel free to ask.
Best regards,
Henry A.
Hello lukintel,
I am sorry but the logs that you provided us can only be view at the engineering level.
Could you please help us with the System Information Retrieval Utility (SysInfo)
If there is anything else we can help please feel free to ask.
Best regards,
Henry A.
Did you use
Just tried Intel's GameplayHardwareDetect on a Asus ROG GL502VMK
This rig comes with NVIDIA G-Sync, therefore Optimus is physically disabled as described at How can I identify whether my gaming notebook is based on Nvidia Optimus Technology?
In other words: the iGPU doesn't appear even in the device manager.
SSU detects this correctly btw.
I guess GameplayHardwareDetect uses a database instead of doing actual hardware scanning?
Dear Sir,
We are using FALC 56 device for Telecom application since 2012. Now we are going to redesign the application.
So please provide us Design/layout guidelines for better performance of FALC56.
Dilraj,
This is the code that I'm using and model is taking 6 hours to do 5 epochs
A DeeperGoogleNet model is built in Keras and used for training, which takes 25 mins to do 5 epochs on Titan X GPU but here it takes 6 hours
# USAGE # python train.py --checkpoints output/checkpoints # python train.py --checkpoints output/checkpoints --model output/checkpoints/epoch_25.hdf5 --start-epoch 25 # set the matplotlib backend so figures can be saved in the background import matplotlib matplotlib.use("Agg") # import the necessary packages from config import tiny_imagenet_config as config from pyimagesearch.preprocessing import ImageToArrayPreprocessor from pyimagesearch.preprocessing import SimplePreprocessor from pyimagesearch.preprocessing import MeanPreprocessor from pyimagesearch.callbacks import EpochCheckpoint from pyimagesearch.callbacks import TrainingMonitor from pyimagesearch.io import HDF5DatasetGenerator from pyimagesearch.nn.conv import DeeperGoogLeNet from keras.preprocessing.image import ImageDataGenerator from keras.optimizers import Adam from keras.models import load_model import keras.backend as K import argparse import json import os import keras.backend.tensorflow_backend as KK import tensorflow as tf config2 = tf.ConfigProto(intra_op_parallelism_threads=256, inter_op_parallelism_threads=2, allow_soft_placement=True, device_count = {'CPU': 64}) session = tf.Session(config=config2) KK.set_session(session) os.environ["OMP_NUM_THREADS"] = "256" os.environ["KMP_BLOCKTIME"] = "30" os.environ["KMP_SETTINGS"] = "1" os.environ["KMP_AFFINITY"]= "granularity=fine,verbose,compact,1,0" # construct the argument parse and parse the arguments ap = argparse.ArgumentParser() ap.add_argument("-c", "--checkpoints", required=True, help="path to output checkpoint directory") ap.add_argument("-m", "--model", type=str, help="path to *specific* model checkpoint to load") ap.add_argument("-s", "--start-epoch", type=int, default=0, help="epoch to restart training at") args = vars(ap.parse_args()) # construct the training image generator for data augmentation aug = ImageDataGenerator(rotation_range=18, zoom_range=0.15, width_shift_range=0.2, height_shift_range=0.2, shear_range=0.15, horizontal_flip=True, fill_mode="nearest") # load the RGB means for the training set means = json.loads(open(config.DATASET_MEAN).read()) # initialize the image preprocessors sp = SimplePreprocessor(64, 64) mp = MeanPreprocessor(means["R"], means["G"], means["B"]) iap = ImageToArrayPreprocessor() # initialize the training and validation dataset generators trainGen = HDF5DatasetGenerator(config.TRAIN_HDF5, 64, aug=aug, preprocessors=[sp, mp, iap], classes=config.NUM_CLASSES) valGen = HDF5DatasetGenerator(config.VAL_HDF5, 64, preprocessors=[sp, mp, iap], classes=config.NUM_CLASSES) # if there is no specific model checkpoint supplied, then initialize # the network and compile the model if args["model"] is None: print("[INFO] compiling model...") model = DeeperGoogLeNet.build(width=64, height=64, depth=3, classes=config.NUM_CLASSES, reg=0.0002) opt = Adam(1e-3) model.compile(loss="categorical_crossentropy", optimizer=opt, metrics=["accuracy"]) # otherwise, load the checkpoint from disk else: print("[INFO] loading {}...".format(args["model"])) model = load_model(args["model"]) # update the learning rate print("[INFO] old learning rate: {}".format( K.get_value(model.optimizer.lr))) K.set_value(model.optimizer.lr, 1e-5) print("[INFO] new learning rate: {}".format( K.get_value(model.optimizer.lr))) # construct the set of callbacks callbacks = [ EpochCheckpoint(args["checkpoints"], every=5, startAt=args["start_epoch"]), TrainingMonitor(config.FIG_PATH, jsonPath=config.JSON_PATH, startAt=args["start_epoch"])] # train the network model.fit_generator( trainGen.generator(), steps_per_epoch=trainGen.numImages // 64, validation_data=valGen.generator(), validation_steps=valGen.numImages // 64, epochs=10, max_queue_size=64 * 2, callbacks=callbacks, verbose=1) # close the databases trainGen.close() valGen.close()
Awaiting your quickest reply
Hi
I have replied on the other thread, can you please ensure that I receive an answer?
Thanks
Hi Antony,
I suspect that basically the problem disappeared when I installed version 5.7.1.1015.
I have finally installed Windows 10 on my NMVe PCIe 960 EVO drive. Got all the latest Windows 10 drivers from ASUS, but did not installed all of them. The same for RST. The question now is do I need to install the RST software?I see no benifit or a need to install the software on my Windows 10 configuration. Got a very recent fast board, CPU/GPU and Windows 10. RST is basically ment for SATA drives, not for PCIe drives.
As end result; loading the latest RST software solved the problem. It is a good advise for others who has a simulair problem.
So we can close this case. Thanks for your support.
Kind regards,
Hans aka Hader.
Hello David,
Thank you for the response.
I also hope this is a hardware issue, however Lenovo repair center refuses to do anything as they couldn't reproduce the issue in the last three checkups (which lasted over a month in total!)
I have tried using Ubuntu for a few hours to test whether it is a problem related to the hardware or not, and I'm 70% sure it is software related as it didn't happen in Ubuntu.
Anyways, I have manually installed the latest drivers from the link.
Still no fix; a long freeze occurred right after updated. There is also a side effect of background image turning into screen full of 1px grey dots in the previous and latest drivers.
niconuma
I just created an account after experiencing this problem with a Dell 7577. Had all the aforementioned issues. I had to cave in and return it. Still waiting for my refund. One thing I noticed with the dell, is that the realtek drivers were the biggest issue. Also does anyone know if the "Asus GL503VM" is safe to purchase? Please.
@Coffie All laptops have this issue. Buying another laptop with NVIDIA + Intel graphics will not help.
Realtek drivers are a whole different story, they are not related to the GPU.
Hello,
I have issue with my SSD Pro 2500 series 180Gb.
It is identified by PC time to time as SandForce 200026BB with 0GB.
If I will try to power off/on my PC few times, it can be identified as Intel SSD and after that working fine.
I tried to update firmware on this ssd using issdfut_64_3.0.1.iso and issdfut_2.0.15.iso, both said that I am using latest version of firmware and no update is required.
Please help me to get this issue fixed.
because the Intel Smart Sound Technology (Intel SST) OED issue ,need update BIOS(Device Manager Code 10 Error on Intel® Smart Sound Technology)
but can not find the BNKBLi35 bios version on the intel website .
NUC model was NUC7I7BNB ,use the similar Model NUC7I7BNH's BIOS (BNKBL357) can not flashed currently .
any other solutions???
Well, for starters, I would never purchase another PC from Dell. This "ship it and forget it" attitude is totally unforgivable.
It appears that Microsoft is releasing microcode updates through Windows Update. See here for status: KB4090007: Intel microcode updates. I would presume that the older microcode updates contained within your older BIOS are sufficient to allow Windows to be booted (i.e. provides fixes for all errata that would prevent this from happening). Thus, having updated microcode loaded by Windows should be clean (the same methodology is used in Linux as well).
Hope this helps,
...S
Web page for downloading BIOS and driver updates for your NUC is here: Downloads for Intel® NUC Kit NUC7i7BNH. The latest BIOS release (BN0062) can be downloaded from here: Download BIOS Update [BNKBL357.86A].
First of all, I do not recommend using the Express BIOS Update capability (the Windows EB.EXE file) for BIOS update. This tool has a number of issues and has been known to brick PCs, so don't use it. Instead, do the following:
If you cannot update the BIOS using this process, follow this jumper-based BIOS Recovery process:
Hope this helps,
...S