Skip to content

Commit c60ee44

Browse files
JoeOsterakertesz
andauthored
Update Root Readme (#94)
* Updating License file to no date in the title /* * Copyright (c) 2020 Intel Corporation * * This program and the accompanying materials are made available under the * terms of the The MIT License which is available at * https://opensource.org/licenses/MIT. * * SPDX-License-Identifier: MIT */ * Update README.md * Fix FPGA entries * Update README.md Updates per request of sranikonda * Update README.md Co-authored-by: akertesz <[email protected]>
1 parent 290f68c commit c60ee44

File tree

1 file changed

+72
-2
lines changed

1 file changed

+72
-2
lines changed

README.md

Lines changed: 72 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,72 @@
1-
oneAPI-samples
2-
This is the readme.
1+
|Code Sample |Supported Intel(r) Architecture(s) |Description |
2+
|-----------------------|-------------------------------------------|---------------|
3+
|DirectPrograming/ |
4+
|../DPC++/CombinationalLogic/Mandelbrot |GPU, CPU |Example of a fractal in mathematics |
5+
|../DPC++/CombinationalLogic/Sepia-filter |GPU, CPU |Color image conversion using 1D range |
6+
|../DPC++/DenseLinearAlgebra/Complex_mult |GPU, CPU |Complex number Multiplication |
7+
|../DPC++/DenseLinearAlgebra/Matrix_mul |GPU, CPU |Simple program that multiplies two large matrices in parallel using DPC++, OpenMP and MKL |
8+
|../DPC++/DenseLinearAlgebra/Simple-add |FPGA, GPU, CPU |Simple Add program |
9+
|../DPC++/DenseLinearAlgebra/Vector-add |FPGA, GPU, CPU |Simple Vector add program |
10+
|../DPC++/GraphTraversal/Bitonic-sort |GPU, CPU |Implementation of bitonic sort using DPC++. |
11+
|../DPC++/ParallelPatterns/Dpc_reduce |GPU, CPU |A simple program that calculates pi, implemented using C++ and DPC++. |
12+
|../DPC++/SpectralMethods/Discrete-cosine-transform |GPU, CPU |Image processing algorithm used in JPEG compression |
13+
|../DPC++/StructuredGrids/1d_HeatTransfer |GPU, CPU |A simulation of one dimensional heat transfer process using DPC++. |
14+
|../DPC++/StructuredGrids/ISO2DFD_DPCPP |GPU, CPU |A simple finite difference stencil kernel for solving 2D acoustic isotropic wave equation using DPC++ |
15+
|../DPC++/StructuredGrids/ISO3DFD_DPCPP |GPU, CPU |A finite difference stencil kernel for solving 3D acoustic isotropic wave equation using DPC++ |
16+
|../DPC++/StructuredGrids/Particle-diffusion |GPU, CPU |A simple implementation of a Monte Carlo simulation of the diffusion of water molecules in tissue |
17+
|../DPC++FPGA/ReferenceDesigns/crr |FPGA |High-performance CRR binomial tree option pricing model using DPC++ on FPGA|
18+
|../DPC++FPGA/ReferenceDesigns/gzip |FPGA |High-performance GZIP compression using DPC++ on FPGA|
19+
|../DPC++FPGA/ReferenceDesigns/qrd |FPGA |High-performance QR decomposition of matrices using DPC++ on FPGA|
20+
|../DPC++FPGA/Tutorials/GettingStarted/fpga_compile |FPGA |Tutorial introducing how to compile DPC++ for FPGA |
21+
|../DPC++FPGA/Tutorials/GettingStarted/fast_recompile |FPGA |Tutorial introducing host-only recompile to save DPC++ development time on FPGA |
22+
|../DPC++FPGA/Tutorials/Tools/use_library |FPGA |Tutorial showing how to use cross-language libraries in DPC++ on FPGA |
23+
|../DPC++FPGA/Tutorials/Tools/system_profiling |FPGA |Tutorial showing how to use the OpenCL Intercept Layer to profile DPC++ designs running on FPGA |
24+
|../DPC++FPGA/Tutorials/DesignPatterns/double_buffering |FPGA |Tutorial demonstrating how to overlap kernel execution with buffer transfers and host processing |
25+
|../DPC++FPGA/Tutorials/DesignPatterns/n_way_buffering |FPGA |Tutorial demonstrating an extension of double buffering to n-way buffering |
26+
|../DPC++FPGA/Tutorials/DesignPatterns/onchip_memory_cache |FPGA |Tutorial demonstrating the caching of on-chip memory to reduce loop initiation interval on FPGA |
27+
|../DPC++FPGA/Tutorials/DesignPatterns/pipe_array |FPGA |Tutorial demonstrating how to create an array of pipes |
28+
|../DPC++FPGA/Tutorials/DesignPatterns/remove_loop_carried_dependency |FPGA |Tutorial demonstrating a technique to optimize performance by removing loop carried dependencies |
29+
|../DPC++FPGA/Tutorials/DesignPatterns/triangular_loop |FPGA |Tutorial demonstrating an advanced FPGA optimization technique for triangular loops |
30+
|../DPC++FPGA/Tutorials/Features/fpga_reg |FPGA |Tutorial demonstrating the use of the DPC++ FPGA power user extension intel::fpga_reg |
31+
|../DPC++FPGA/Tutorials/Features/kernel_args_restrict |FPGA |Tutorial demonstrating how to avoid performance penalties due to kernel argument aliasing |
32+
|../DPC++FPGA/Tutorials/Features/loop_coalesce |FPGA |Tutorial demonstrating the DPC++ FPGA loop_coalesce attribute |
33+
|../DPC++FPGA/Tutorials/Features/loop_ivdep |FPGA |Tutorial demonstrating the use of the loop ivdep attribute |
34+
|../DPC++FPGA/Tutorials/Features/loop_unroll |FPGA |Tutorial demonstrating the DPC++ unroll pragma and its performance trade-offs on FPGA |
35+
|../DPC++FPGA/Tutorials/Features/max_concurrency |FPGA |Tutorial demonstrating the DPC++ FPGA max_concurrency attribute |
36+
|../DPC++FPGA/Tutorials/Features/memory_attributes |FPGA |Tutorial demonstrating how to use DPC++ FPGA memory attributes |
37+
|../DPC++FPGA/Tutorials/Features/pipes |FPGA |Tutorial demonstrating the DPC++ FPGA pipes extension to transfer data between kernels |
38+
|../DPC++FPGA/Tutorials/Features/speculated_iterations |FPGA |Tutorial demonstrating the DPC++ FPGA speculated_iterations attribute |
39+
|../C++/CombinationalLogic/Mandelbrot |CPU |Demonstrates how to accelerate Mandelbrot performance with SIMD and parallelization using OpenMP*. |
40+
|../C++/CompilerInfrastructure/Intrinsics |CPU |Shows how to utilize the intrinsics supported by C++ compiler in a variety of applications. |
41+
|../C++/GraphTraversal/Mergesort |CPU |Shows how to accelerate scalar merge sort program using OpenMP tasks |
42+
|Libraries |
43+
|../oneDPL/Gamma-correction |GPU, CPU |gamma correction using Parallel STL |
44+
|../oneDPL/Stable_sort_by_key |GPU, CPU |stable sort by key using counting_iterator and zip_iterator |
45+
|../oneVPL/hello-decode |CPU |shows how to use oneVPL to perform a simple video decode |
46+
|../oneVPL/hello-encode |CPU |shows how to use oneVPL to perform a simple video encode |
47+
|Tools |
48+
|../ApplicationDebugger/Debugger/array-transform |GPU, CPU |Array transform |
49+
|../IoTConnectionTools/Analog-in |CPU |Analog pin input example using Eclipse* MRAA |
50+
|../IoTConnectionTools/Digital In |CPU |GPIO pin input example using Eclipse* MRAA |
51+
|../IoTConnectionTools/Digital Out |CPU |GPIO pin output example using Eclipse* MRAA |
52+
|../IoTConnectionTools/Hello IoT World |CPU |Basic example that prints the compiler used during build |
53+
|../IoTConnectionTools/Interrupt |CPU |Interrupt Service Routine example using Eclipse* MRAA |
54+
|../IoTConnectionTools/Onboard Blink |CPU |Built-in LED blink for common IoT boards using Eclipse* MRAA |
55+
|../IoTConnectionTools/PWM |CPU |Pulse Width Modulation pin output using Eclipse* MRAA |
56+
|../IoTConnectionTools/Up2 LEDs |CPU |Built-in LED example for UP* Squared using Eclipse* MRAA |
57+
|../SystemDebug/System Debug Sample Build |UEFI |Basic example that showcases the features of the Intel® System Debugger |
58+
59+
# License
60+
61+
The code samples are licensed under MIT license
62+
63+
# Known issues or limitations
64+
65+
## On Windows Platform
66+
1. If you are using Visual Studio 2019, Visual Studio 2019 version 16.4.0 or newer is required.
67+
2. To build samples on Windows, the required Windows SDK is ver. 10.0.17763.0.
68+
3. Now you should be able to build the code sample.
69+
4. For beta, FPGA samples support Windows through FPGA-emulator.
70+
5. If you encounter a compilation error like below when building a sample program, one reason is that the directory path of the sample is too long; the work around is to move the sample to a directory like "c:\temp\sample_name".
71+
* Error MSB6003 The specified task executable "dpcpp.exe" could not be run ......
72+

0 commit comments

Comments
 (0)