我可以访问一个大型的IBM机器(运行Power8 ),并希望在它上构建Bazel。然而,当我试图按照他们的安装说明去做的时候,我得到:
me@machine:~/bazel-0.1.5$ ./compile.sh
INFO: You can skip this first step by providing a path to the bazel binary as second argument:
INFO: ./compile.sh compile /path/to/bazel
Building Bazel from scratch.
Compiling Java stubs f
我可以访问一台大型的IBM Power8机器,并希望在其上安装TensorFlow。当然,我尝试了快速pip安装,但失败了:
sudo pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.6.0-cp27-none-linux_x86_64.whl
tensorflow-0.6.0-cp27-none-linux_x86_64.whl is not a supported wheel on this platform.
Storing debug log for failure in /hom
我正在尝试在远程服务器上安装anaconda。它是一个运行ubunto 16.04.2 LTS的64位机器。我想使用python2.7,所以我从anaconda网站下载了相应的文件。但是,当我开始安装时,我收到以下警告
WARNING:
Machine does not appear to be ppc64le. This software was sepicically
build for POWER8 running Ubuntu 14.04 LTS.
Are sure you want to continue the installation?
编辑:发帖后我找
我试图在Ubuntu (14.04)上运行Java应用程序(ElasticSearch和Cassandra),使用OpenJDK在Power硬件上运行。我遇到了一个错误:
The stack size specified is too small, Specify at least 1664k
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
我发现x86_64 OpenJDK java至少需要160 k的堆栈大小。因
我正在使用Tensorflow后端在Keras上训练序列到序列模型,主要遵循教程。
我在带有TensorFlow GPU的Power8机器上使用P100 v1.2.1
当它到达我的model.fit_generator()行时,TensorFlow抛出以下错误:
Object was never used (type <class 'tensorflow.python.ops.tensor_array_ops.TensorArray'>):
<tensorflow.python.ops.tensor_array_ops.TensorArray ob
我已经用PPC工具链建立了以下程序的可执行文件。
工具链详细信息: powerpc-wrs- Linux -gnu-g++ (Wind River Linux Sourcery G++ 4.4a-341) 4.4.1
我们在编译过程中包含了-pthread,在链接中包含了-lpthread。我们也在使用-lrt和-ldl标志。
#include <string>
#include <iostream>
#include <thread>
using namespace std;
// The function we want to execute on
我正在研究GCC112,它是一台Linuxppc64le机器,来自。我正在测试IBM /C++,并在一些使用POWER8的AES代码上捕捉编译失败。这段代码在过去几年里起了作用。失败是新的。
编译失败是:
$ CXX=xlC make aes-simd.o
xlC -DNDEBUG -g2 -O3 -qrtti -qpic -qarch=pwr8 -qaltivec -c aes-simd.cpp
In file included from aes-simd.cpp:29:
./ppc-simd.h:443:16: error: use of undeclared identifier
在使用内联程序集和本地标签时,我捕获了一个汇编程序错误。编译器是GCC,机器是运行AIX的PowerPC。代码 (大致相当于rdtsc):
static unsigned long long cpucycles( void )
{
unsigned long long int result=0;
unsigned long int upper, lower,tmp;
__asm__ __volatile__ (
"0: \n\t"
"mftbu %0 \n\t