mirror of
https://github.com/paboyle/Grid.git
synced 2025-06-15 14:27:06 +01:00
25 lines
559 B
Markdown
25 lines
559 B
Markdown
---
|
|
title : "API Documentation"
|
|
author_profile: false
|
|
excerpt: "Vectorisation"
|
|
header:
|
|
overlay_color: "#5DADE2"
|
|
permalink: /docs/API/vectorisation.html
|
|
sidebar:
|
|
nav : docs
|
|
---
|
|
|
|
|
|
Internally, Grid defines a portable abstraction SIMD vectorisation, via the following types:
|
|
|
|
* `vRealF`
|
|
|
|
* `vRealD`
|
|
|
|
* `vComplexF`
|
|
|
|
* `vComplexD`
|
|
|
|
These have the usual range of arithmetic operators and functions acting upon them. They do not form
|
|
part of the API, but are mentioned to (partially) explain the need for controlling the
|
|
layout transformation in lattice objects. |