atlas

TextureAtlas tool not reading Texture atlas - SpriteKit Texture Atlas Generator Error

会有一股神秘感。 提交于 2019-12-11 05:33:58
问题 I am trying to make a node with a simple animation, so I created a animation with each individual frame as a .png file, I stuck them all in a folder, and named it stoneanimation2.atlas . This is the code I tried: SKTextureAtlas *atlas = [SKTextureAtlas atlasNamed:@"stoneanimation2"]; SKTexture *stone2 = [atlas textureNamed:@"stone2.png"]; SKTexture *stone3 = [atlas textureNamed:@"stone3.png"]; SKTexture *stone4 = [atlas textureNamed:@"stone4.png"]; SKTexture *stone5 = [atlas textureNamed:@

Numpy multiarray.so: undefined symbol: cblas_sgemm

前提是你 提交于 2019-12-10 15:55:17
问题 I'm trying to install numpy==1.10.2 , scipy and matplotlib on server based on opensuse . I've installed numpy in virtualenv from source (I've tried by pip also - same result of course). Now when I'm trying to import numpy in python console I'm receiving following error: ImportError: /home/user/.virtualenvs/project/lib/python2.7/site-packages/numpy/core/multiarray.so: undefined symbol: cblas_sgemm Note: I'm not superuser on this server. Edit: ldd /home/user/.virtualenvs/project/lib/python2.7

armadillo C++ matrix library — how to enable use of ATLAS or LAPACK?

£可爱£侵袭症+ 提交于 2019-12-08 05:51:10
问题 When i compile example2.cpp with armadillo makefile and run it i am getting an error message error: det(): use of ATLAS or LAPACK needs to be enabled How do i fix that? I have similar errors when i try to use solve. Details of my setup are: Ubuntu Lucid Lynx 10.04 Armadillo version: 2.4.2 (Loco Lounge Lizard) ATLAS 3.9.51 BOOST 1.48.0 g++ (Ubuntu 4.4.3-4ubuntu5.1) 4.4.3 Atlas was installed before armadillo was, armadillo installation was configured with Cmake. I am far from an expert in cmake

Determining the independent CPU's (specified with affinity ID's) for building ATLAS

旧城冷巷雨未停 提交于 2019-12-07 18:07:01
问题 I'm trying to determine the independent CPU's (specified with affinity ID's) for building ATLAS on a linux machine with 4 Intel CPU's with hyperthreading (ubuntu 12.04). The reason I'm doing this is that the ATLAS manual says to use only the physical cores on machines with hyper threading, on how to achieve this it says: "...you can tell ATLAS to use only the real cores if you learn a little about your machine. Unfortunately, ATLAS cannot presently autodetect these features, but if you

【原创】如何查看某进程下运行的线程

情到浓时终转凉″ 提交于 2019-12-07 14:47:29
研究 Atlas 过程中,需要了解其进程模型(线程模型),那么如何查看其运行模式呢? 前提 :Atlas 配置了 daemon 模式和 keepalive 功能。 [root@Betty conf]# vi modb.cnf [mysql-proxy] ... daemon = true keepalive = true ... 查看方式 : 1. ps 命令查看 从 man ps 中可以如下说明,可以显示 进程关系 , To print a process tree: ps -ejH ps axjf 但 ps -ejH 显示出来的东东比较难看,所以采用第二种方式查看, [root@Betty conf]# ps axjf|grep mysql-proxy|grep -v grep 1 3755 3754 3754 ? -1 S 0 0:00 mysql-proxy --defaults-file=/usr/local/mysql-proxy/conf/modb.cnf 3755 3756 3754 3754 ? -1 Sl 0 0:00 \_ mysql-proxy --defaults-file=/usr/local/mysql-proxy/conf/modb.cnf 那么如何显示 线程关系 呢?有如下说明, To get info about threads: ps -eLf

How check the .spriteatlas sizes generated by Xcode?

孤人 提交于 2019-12-06 08:47:05
I'm using texture atlas for handling my images. I didn't created the atlas by myself however I let Xcode to do this for me: My question is: How can I see this file or know its properties (I mean, sizes and weight)? What if and how can I know if the sizes exceed the maximum size of 4098 x 4098 pixel? 来源: https://stackoverflow.com/questions/33561727/how-check-the-spriteatlas-sizes-generated-by-xcode

Determining the independent CPU's (specified with affinity ID's) for building ATLAS

天涯浪子 提交于 2019-12-06 02:30:20
I'm trying to determine the independent CPU's (specified with affinity ID's) for building ATLAS on a linux machine with 4 Intel CPU's with hyperthreading (ubuntu 12.04). The reason I'm doing this is that the ATLAS manual says to use only the physical cores on machines with hyper threading, on how to achieve this it says: "...you can tell ATLAS to use only the real cores if you learn a little about your machine. Unfortunately, ATLAS cannot presently autodetect these features, but if you experiment you can discover which affinity IDs are the separate cores,..." Further on a hint is given on how

iPhone 6+ simulator doesn't load @3x images from atlas

烂漫一生 提交于 2019-12-04 18:44:45
What I've noticed when running project on iPhone 6+ simulator is that simulator don't pick up right images. Instead of @3x, @2x images are used. I tried reseting simulators content and settings, clean project and delete derived data from organizer and same thing still happens. When I look for the myatlas.atlasc folder inside the myapp.app (show package contents) at the path: /Users/username/Library/Developer/Xcode/DerivedData/appname-appspecificgeneratedstring/Build/Products/Debug-iphonesimulator/appname.app I can see myatlas.atlasc (note that this is not myatlas.atlas) and inside there are

Correct way to point to ATLAS/BLAS/LAPACK libraries for numpy build?

送分小仙女□ 提交于 2019-12-04 06:28:02
I'm building numpy from source on CentOS 6.5 with no root access (python -V=2.7.6). I have the latest numpy source from git. I cannot for the life of me get numpy to acknowledge atlas libs. I have: ls -1 /usr/lib64/atlas libatlas.so.3 libatlas.so.3.0 libcblas.so.3 libcblas.so.3.0 libclapack.so.3 libclapack.so.3.0 libf77blas.so.3 libf77blas.so.3.0 liblapack.so.3 liblapack.so.3.0 libptcblas.so.3 libptcblas.so.3.0 libptf77blas.so.3 libptf77blas.so.3.0 I don't know anything about how these libs came about, but I can only assume that the atlas builds would be faster than any standard BLAS/LAPACK

How to make sure the numpy BLAS libraries are available as dynamically-loadable libraries?

放肆的年华 提交于 2019-12-03 08:27:38
问题 The theano installation documentation states, that theano will as a default use the BLAS libraries from numpy, if the "BLAS libraries are available as dynamically-loadable libraries". This seems not to be working on my machine, see error message. How do I find out, if the numpy BLAS libraries are availalbe as dynamically-loadable? How do I recompile the numpy BLAS libraries, if they are not dynamically-loadable? Please indicate, if you would need more information! Error message We did not