# Current Status
IMPORTANT: Checked features might end up only working for the specific cases that were tested during their development. If you notice that they do not work in some different configurations, please inform me about it; do not forget to attach the OpenCL sample triggering the issue, as well as the chipset of your GPU.
NOTE: Current status, as of 14 Mar. 2016, 22:46 GMT+1
## Supported cards
- [X] Tesla
- [ ] Fermi (Most likely similar to Kepler, but untested)
- [X] Kepler
- [ ] Maxwell
## Supported features
- [ ] Types:
- [X] bool (to some extent)
- [X] int
- [X] float
- [X] vector
- [ ] array
- [ ] structure
- [ ] matrix
- [ ] event
- [X] pointer
- [X] function
- [ ] Casts
- [ ] Images, textures
- [ ] Decorations on operations and functions (aligned, etc.)
- [ ] Operators:
- [X] binary arithmetic
- [ ] unary arithmetic
- [ ] logical
- [ ] bitwise
- [ ] Control flow:
- [X] Branches, and conditional branches (without phi nodes)
- [ ] Phi nodes
- [ ] Loops
- [ ] Function calling
- [ ] Builtins:
- [X] get_local_id(), get_local_size(), get_global_id(), get_global_size()
- [ ] get_work_dim(), get_num_groups(), get_group_id()
- [ ] math functions
- [ ] atomics, barriers & co.