Apr 082016
 

group16The 2016 British Crystallographic Meeting Spring Meeting took place at the University of Nottingham from 4th – 7th April. Contributions from Chem. Cryst. staff and students were:

Jerome G. P. Wicker, Bill I. F. David & Richard I. Cooper
When will it Crystallise? (Talk in session: From Amorphous to Crystal)

Jo Baker & Richard I. Cooper
Making and Measuring Photoswitchable Materials (Talk in session: Young Crystallographers’ Satellite)

Pascal Parois, Karim J. Sutton & Richard I. Cooper
On the application of leverage analysis to parameter precision using area detector strategies (Poster)

Oliver Robshaw & Richard I. Cooper
The role of molecular similarity in crystal structure packing (Poster)

Katie McInally & Richard I. Cooper
Linking crystallization prediction, theory and experiment using solubility curve determination (Poster)

Richard I. Cooper, Pascal Parois & David J. Watkin
Non-routine single crystal structure analyses using CRYSTALS (Poster)

Alex Mercer & Richard I. Cooper
Fitting Disordered Crystal Structures by Simulated Annealing of an Ensemble Model (Poster)

 

Mar 072016
 

Acta. Cryst. (2016) C72, 261-267 [ doi:10.1107/S2053229616003570 ]

snipA study of post-refinement absolute structure determination using previously published data was carried out using the CRYSTALS software package. We show that absolute structure determination may be carried out optimally using the analyses available in CRYSTALS, and that it is not necessary to have the separate procedures absolute structure determination and no inter­est in absolute structure as proposed by Flack [Chimia (2014), 68, 26–30].

Publisher’s copy

Oct 082014
 

v14.5481The CRYSTALS v14.5481 installer is now available.

This update fixes usability problems related to new features in the latest series of releases. There may be a problem with OpenGL rendering on ATI graphics cards – please report problems if you see any ‘artefacts’ while viewing crystal structure models.

Version 14.60 onwards are built with a new compiler and libraries – therefore please report any unusual installation or usage problems.

Note the slight change in version numbering (v14.62 -> v14.5481) The minor component now refers to a specific snapshot of the source code enabling us to better identify and fix bugs in older releases.

Changes
See v1460 release for more changes.

Aug 172014
 

v1460The CRYSTALS v1461 installer is now available.

There are still some usability issues in this release. v1462 is expected soon (October 1st).

This is a bugfix release. It fixes the following problems in v1460: a crash on loading large datasets; line-ending issues with the new built-in editor; freeze in Cameron; display issues with atom labels in CRYSTALS.

Version 1460 and this release are built with a new compiler and libraries – therefore please report any installation or usage problems.

Changes
See v1460 release for changes.

May 152013
 

pascalPascal is a senior post-doctoral researcher working on refinement and analysis of diffraction from very short lived excited state chemical species. He obtained a PhD with Dr Mark Murrie at Glasgow University studying the effects of pressure on single molecular magnets, and has since held posts at Utrecht University and University of Nancy working on software development and time-resolved diffraction. Pascal maintains a personal blog on chemical and crystallographic software matters, and in his spare time enjoys hiking and genealogy.

May 152013
 

Crystallographic structure refinement can involve hundreds of millions of calculations for a single iteration of structure refinement; careful optimisation plays an important role in determining how efficiently the software makes uses of the available CPU power. The following freely available tools help identify bottlenecks in software implementations, and allow testing potentially faster algorithms and compiler options. On recent CPUs, a carefully optimised algorithm can easily be ten times faster than a naïve implementation. Not only does this save time, but it also enables the use of larger data sets and more complicated models to tackle ever more complicated problems. A time-critical portion of code from the crystallographic refinement package CRYSTALS is analysed here.

All the software tools discussed are free and open source, running on the Linux operating system. Some of them are not available on Windows.

Profiling

The first optimisation step is profiling the execution of the existing code and algorithms. This will reveal exactly how much time is spent in functions, lines of code, and even assembly instructions. Two approaches are common:

  1. Emulating a CPU in software and then counting every instruction executed. This is the method used in valgrind. It can also look for memory leaks. Because the CPU is emulated, it can take up to 200 times longer than normal code execution.
  2. Exploiting hardware counters directly inside the CPU. These counters can be checked at fixed intervals and then recorded. While there is almost no performance penalty compared to the normal execution, it can be inaccurate. The software perf from the linux kernel can exploit them.
pascal-kcache

KCacheGrind: the coloured regions correspond to different functions in the software while the area of each corresponds to the time spent in that function during execution.

This example uses the least-squares refinement routine (\sfls) in the crystallographic analysis package CRYSTALS. A decent size data set (http://dx.doi.org/10.1107/S1600536813007757) from the journal Acta Crystallographica Section E has been used. The command line version of CRYSTALS (compiled with COMPCODE=LIN) was compiled on Linux using the open source compiler gfortran. The executable was then profiled using the software valgrind and the profiling data were analysed with kcachegrind. The output includes a graphical map (shown below) in which coloured regions correspond to different functions in the software and the area of each region corresponds to the time spent in that function during execution.

 

The same data has been analysed using the software perf with the following result:

89.94% crystals crystals      [.] adlhsblock_
 3.71% crystals crystals      [.] xchols_
 2.90% crystals crystals      [.] xsflsx_
 0.89% crystals libm-2.17.so  [.] __expf_finite
 0.44% crystals crystals      [.] xzerof_

In both cases, the profile analysis reveals that about 90% of the time is spent in the adlhsblock function, which is just 21 lines long including declarations. The body of the function is shown below (accumula.F, revision 1.8).

I = 1
do ROW=1, BLOCKdimension  ! Loop over all the rows of the block
    CONST = DERIVS(ROW)   ! Get the constent term
    do COLUMN = ROW, BLOCKdimension
        MATBLOCK(I) = MATBLOCK(I) + CONST*DERIVS(COLUMN) ! Sum on the next term.
        I = I + 1         ! Move to the next position in the matrix
    end do
end do

Instruction level analysis

The adlhsblock function is forming the normal matrix from the design matrix and is mathematically doing the matrix multiplication Zt Z. To save memory, the design matrix is not stored completely and the calculation is done reflection by reflection, multiplying and accumulating the outer product of one row of Z. Furthermore, only the upper triangle of the normal matrix is stored, which reduces the number of operations, but makes for convoluted row/column indexing of the elements.

Further investigation of the code profiling within the function indicates that the bottleneck is on the line:

MATBLOCK(I) = MATBLOCK(I) + CONST*DERIVS(COLUMN)

The assembly instructions also revealed the used of scalar instructions.

 0.09 │70:  vmovss (%rsi),%xmm0
21.21 │     add $0x4,%rsi
      │         MATBLOCK(I) = MATBLOCK(I) + CONST*DERIVS(COLUMN)
 0.05 │78:  vmulss %xmm0,%xmm1,%xmm0
12.24 │     movslq %ecx,%rcx 
 0.12 │     lea -0x4(%rdx,%rcx,4),%rcx
20.42 │     vaddss (%rcx),%xmm0,%xmm0
13.35 │     vmovss %xmm0,(%rcx)
      │         I = I + 1
20.91 │     mov %eax,%ecx
 0.06 │     add $0x1,%eax

Modern CPUs include two kind of processing units: scalar units (which process one input at a time) and vector units (which can process multiple input at the same time with the same operation). The latter instructions are called SIMD. The performance of SIMD can be outstanding compare to scalar instructions: On a Sandy bridge Intel processor the vector instructions can operate on up to eight single precision numbers at the same time. Compilers can automatically use these instructions based on patterns in the source code (see http://gcc.gnu.org/projects/tree-ssa/vectorization.html). However it is advisable to always check if a loop has been vectorized as expected as some restrictions may apply (see http://blog.debroglie.net/2013/04/14/autovectorization-not-vectorized-not-suitable-for-gather/). The use of scalar instructions is symptomatic of a suboptimal optimisation.

Optimisation and analysis

The standard optimisation level compiler switch for CRYSTALS in the Linux makefile is ‘-O2’ which does not include autovectorisation (autovectorisation is enabled at ‘O3’ level). CRYSTALS was therefore compiled with autovectorisation enabled (-ftree-vectorize -msse2) and did not give any speed up. Applying the flag (-ftree-vectorizer-verbose) and checking the output during compilation confirmed that no loop had been vectorised. In order to improve the situation the inner loop was removed and replaced with array operations and the recursive dependency on the indices was removed.

do ROW=1, BLOCKdimension
   i = ((row-1)*(2*blockdimension-row+2))/2+1
   j = i + blockdimension - row
   MATBLOCK(i:j) = MATBLOCK(i:j)+DERIVS(ROW)* derivs(row:BLOCKdimension)
end do

The new version has been compared to the original given different level of optimisation:

Compilation flag Original code (Wall clock time in s) New code (Wall clock time in s)
-O2 16 12
-O2 -ftree-vectorize -msse2 16 6.7
-O2 -ftree-vectorize -mavx 16 5.0

The improvement without vectorization (16s to 12s) is surprising: Because each cycle in the loop is independent the greater flexibility could be exploited by the scheduler to reorder instructions for greater efficiency. When using sse2 or avx instructions the new version is much faster still. The double size of the avx vector compare to sse is also clearly visible.

The new code was profiled using perf and compared to the original one. The bottleneck remains in the adlhsblock function, but the assembly output confirms the use of the vectorised avx intructions (vmulps and vaddps for example).

85.75% crystals crystals     [.] adlhsblock_
 5.40% crystals crystals     [.] xchols_
 4.40% crystals crystals     [.] xsflsx_
 1.30% crystals libm-2.17.so [.] __expf_finite
 0.61% crystals crystals     [.] xzerof_
      |         MATBLOCK(i:j) = MATBLOCK(i:j)+DERIVS(ROW)*derivs(row:BLOCKdimension)
 2.35 |15a: vmovup (%r11,%rcx,1),%xmm1
 8.42 |     add $0x1,%r8
 4.73 |     vinser $0x1,0x10(%r11,%rcx,1),%ymm1,%ymm1
 7.91 |     vmulps %ymm2,%ymm1,%ymm1
 8.82 |     vaddps (%r14,%rcx,1),%ymm1,%ymm1
41.82 |     vmovap %ymm1,(%r14,%rcx,1)
12.10 |     add $0x20,%rcx 
 2.62 |     cmp %r8,%r13
      |   ? ja 15a

 

Using code profiling to identify a bottleneck, followed by optimisation of the algorithm and appropriate choice of compiler switches result in least-squares refinement that is up to three times faster.

Sep 212012
 

J. Appl. Cryst. (2012). 45, 1057–1060. [ doi:10.1107/S0021889812035790 ]

The traditional Waser distance restraint, the rigid-bond restraint and atomic displacement parameter (ADP) similarity restraints have an equal influence on both atoms involved in the restraint. This may be inappropriate in cases where it can reasonably be expected that the precision of the determination of the positional parameters and ADPs is not equal, e.g. towards the extremities of a librating structure or where one atom is a significantly stronger scatterer than the other. In these cases, the traditional restraint feeds information from the poorly defined atom to the better defined atom, with the possibility that its characteristics become degraded. The modified restraint described here feeds information from the better defined atom to the more poorly defined atom with minimal feedback.

Electronic reprints

Publisher’s copy

 

Aug 102012
 

Summer is conference season and the members of Chem. Cryst. have been on the road to the ACA in Boston and the ECM in Bergen.  In September, Kirsten will also be attending the 7th International Conference on Aperiodic Crystals, to be hosted in Cairns, Australia.  Contributions include:

David J. Watkin, Richard I. Cooper & Anna Collins
Z’>1 Structures. Just a Nuisance or Something More Interesting? (ACA; Oral presentation)

Karim J. Sutton, Richard I. Cooper, Kirsten E. Christensen, Amber L. Thompson, David R. Allan & Sarah A. Barnett
Exploiting the Tunable Wavelength Capabilities of Synchrotron Radiation for Small Molecule Single Crystal X-ray Crystallography (ACA; Prize winning oral presentation)

Richard I. Cooper
CRYSTALS: Teaching an Old Dog New Tricks (ACA; Oral presentation)

Amber L. Thompson
When Small Molecules Get Large – A Journey into the Unknown (ECM; Oral presentation)

Anthony Linden & Amber L. Thompson
Hot topics and Structures in Molecular Chemistry (ECM; Microsymposium)

Kirsten E. Christensen & Amber L. Thompson
New Challenges in Chemical Crystallography (Aperiodic; Oral presentation)

 

Along the bryggen in Bergen

Along the bryggen in Bergen

In Bergen

In Bergen

Something smells a little fishy

Something smells a little fishy

A BIG fishy!

A BIG fishy!

It really *IS* that expensive in Norway!

It really *IS* that expensive in Norway!

Albert Einstein or Edvard Greig?

Albert Einstein or Edvard Greig?

Norwegian Humour

Norwegian Humour