Skip to content

Commit ee127d4

Browse files
authored
Minor fixes on various proposal updating links and fixing typos (#84)
* Minor formatting and working computeCpp version added. * Fixing versions, dates and overall README links * Fixing title of host access extension * Fixed typo on link
1 parent 8757d1c commit ee127d4

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,7 @@ Each proposal in the table below will be tagged with one of the following states
5353
| CP012 | [Data Movement in C++](data-movement/index.md) | ISO C++ SG1, SG14 | 30 May 2017 | 28 August 2017 | _Work in Progress_ |
5454
| CP013 | [Executor properties for affinity-based execution <br> System topology discovery for heterogeneous & distributed computing](affinity/index.md) | ISO C++ SG1, SG14, LEWG | 15 November 2017 | 12 January 2019 | _Work in Progress_ |
5555
| CP014 | [Shared Virtual Memory](svm/index.md) | SYCL 2.2 | 22 January 2018 | 22 January 2018 | _Work in Progress_ |
56-
| CP015 | [Specialization Constant](spec-constant/index.md) | SYCL 1.2.1 extension / SYCL 2.2 | 24 April 2018 | 24 April 2018 | _Work in Progress_ |
57-
| CP019 | [On-chip Memory Allocation](onchip-memory/index.md) | SYCL 1.2.1 extension / SYCL 2.2 | 03 December 2018 | 03 December 2018 | _Work in Progress_ |
56+
| CP015 | [Specialization Constant](spec-constant/index.md) | SYCL 1.2.1 extension | 24 April 2018 | 24 April 2018 | _Work in Progress_ |
57+
| CP017 | [Host Access](host_access/index.md) | SYCL 1.2.1 vendor extension | 17 September 2018 | 13 December 2018 | _Available since CE 1.0.3_ |
58+
| CP018 | [Built-in kernels](builtin_kernels/index.md) | SYCL 1.2.1 vendor extension | 12 October 2018 | 12 October 2018 | _Available since CE 1.0.3_ |
59+
| CP019 | [On-chip Memory Allocation](onchip-memory/index.md) | SYCL 1.2.1 vendor extension | 03 December 2018 | 03 December 2018 | _Available since CE 1.0.3_ |

asynchronous-data-flow/sycl-2.2/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This proposal aims to
4343
contribute the following to the SYCL 2.2 specification:
4444

4545
1. [A description of the expected behaviour of a SYCL program in terms of data dependencies between command groups](01_command_group_requirements_and_actions.md)
46-
2. [How the definition of accessors affects the synchronization of the program](02_memory_consistency.md)
46+
2. [How the definition of accessors affects the synchronization of the program](02_memory_consistence.md)
4747
3. [Additional functionality to interact with data on the host](03_interacting_with_data_on_the_host.md)
4848
4. [Extending the buffer/image interface to provide hints to the runtime](04_update_on_specific_context.md)
4949

builtin_kernels/sycl-1.2.1/builtin_kernels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| Date of Creation | 12 October 2018 |
77
| Target | SYCL 1.2.1 vendor extension |
88
| Current Status | _Work In Progress_ |
9-
| Implemented in | _N/A_ |
9+
| Available since | _ComputeCpp CE 1.0.3_ |
1010
| Reply-to | Ruyman Reyes <ruyman@codeplay.com> |
1111
| Original author | Ruyman Reyes <ruyman@codeplay.com> |
1212

host_access/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| Previous Names | n/a |
77
| Date of Creation | 17 September 2017 |
88
| Target | SYCL 1.2.1 vendor extension |
9-
| Current Status | _Work in Progress_ |
9+
| Current Status | _Work in progress_ |
1010
| Reply-to | Ruyman Reyes <ruyman@codeplay.com> |
1111
| Original author | Ruyman Reyes <ruyman@codeplay.com> |
1212
| Contributors | Ruyman Reyes <ruyman@codeplay.com> |
@@ -20,4 +20,5 @@ See sycl-1.2.1/host_access.md
2020
| Version | Last Modified | Document |
2121
|---------|----- | ---------|
2222
| 0.1 Draft | 15 September 2018 | [Link](sycl-1.2.1/host-access.md) |
23+
| 0.2 Draft | 13 December 2018 | [Link](sycl-1.2.1/host-access.md) |
2324

host_access/sycl-1.2.1/host_access.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# Temporary buffer
1+
# Restricting host access to SYCL buffers
22

33
| Proposal ID | CP017 |
44
|-------------|--------|
55
| Name | Host access |
66
| Date of Creation | 17 September 2017 |
77
| Target | SYCL 1.2.1 vendor extension |
8-
| Current Status | _Work In Progress_ |
8+
| Current Status | _Implemented_ |
9+
| Available | Since ComputeCpp 1.0.3 CE |
910
| Reply-to | Ruyman Reyes <ruyman@codeplay.com> |
1011
| Original author | Ruyman Reyes <ruyman@codeplay.com> |
1112

@@ -81,7 +82,8 @@ std::for_each(sycl_named_policy<example>(otherQueue),
8182
* performed.
8283
*/
8384
buffer<float, 1> tmp{myRange,
84-
{property::buffer::context_bound(deviceContext), codeplay::property::buffer::host_access(host_access_mode::none)} };
85+
{property::buffer::context_bound(deviceContext),
86+
codeplay::property::buffer::host_access(host_access_mode::none)} };
8587
8688
bool firstIter = true;
8789

onchip-memory/index.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
| Previous Names | n/a |
77
| Date of Creation | 03 December 2018 |
88
| Target | SYCL 1.2.1 vendor extension |
9-
| Current Status | _Work in Progress_ |
9+
| Current Status | _Work in progress_ |
10+
| Available since | ComputeCpp CE 1.0.3 |
1011
| Reply-to | Gordon Brown <gordon@codeplay.com> |
1112
| Original author | Gordon Brown <gordon@codeplay.com> |
12-
| Contributors | Gordon Brown <gordon@codeplay.com> Ruyman Reyes <ruyman@codeplay.com> |
13+
| Contributors | Gordon Brown <gordon@codeplay.com>, Ruyman Reyes <ruyman@codeplay.com> |
1314

1415
## Overview
1516

@@ -20,4 +21,5 @@ See sycl-1.2.1/onchip-memory.md
2021
| Version | Last Modified | Document |
2122
|---------|----- | ---------|
2223
| 0.1 Draft | 03 December 2018 | [Link](sycl-1.2.1/onchip-memory.md) |
24+
| 0.2 Draft | 13 December 2018 | [Link](sycl-1.2.1/onchip-memory.md) |
2325

0 commit comments

Comments
 (0)