Skip to content

Reverted PR#1265 and PR#1266 #1298

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@
#include <chrono>
#include <iomanip>
#include <iostream>
#include <CL/sycl.hpp>
// dpc_common.hpp can be found in the dev-utilities include folder.
// e.g., $ONEAPI_ROOT/dev-utilities/<version>/include/dpc_common.hpp
#include "dpc_common.hpp"
#include "mandel.hpp"


using namespace std;
using namespace sycl;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <iomanip>
#include <vector>
// dpc_common.hpp can be found in the dev-utilities include folder.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* relevant terms noted in the comments.
*/

#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <iostream>
#include <limits>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// SPDX-License-Identifier: MIT
// =============================================================

#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <chrono>
#include <cstdlib>
#include <iostream>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
#include <iostream>
#include <string>
#include <optional>
#include <CL/sycl.hpp>

// dpc_common.hpp can be found in the dev-utilities include folder.
// e.g., $ONEAPI_ROOT/dev-utilities/<version>/include/dpc_common.hpp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
// Note: The implementation uses logarithms of the probabilities to process small numbers correctly
// and to replace multiplication operations with addition operations.

#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <iostream>
#include <limits>
#include <math.h>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <iostream>
#include <math.h>
#include <stdlib.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _GSIMULATION_HPP
#define _GSIMULATION_HPP

#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <cstdlib>
#include <fstream>
#include <iomanip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@

#include <iostream>
#include <string>
#include <CL/sycl.hpp>
// dpc_common.hpp can be found in the dev-utilities include folder.
// e.g., $ONEAPI_ROOT/dev-utilities/<version>/include/dpc_common.hpp
#include "dpc_common.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// SPDX-License-Identifier: MIT
// =============================================================

#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <iomanip>
#include <iostream>
#include <vector>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// SPDX-License-Identifier: MIT
// =============================================================

#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <iostream>
#include <map>
#include <set>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "DCT.hpp"

#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <cmath>
#include <cstdio>
#include <cstdlib>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// 1d_HeatTransfer.cpp
//
//******************************************************************************
#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <algorithm>
#include <fstream>
#include <iomanip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <dpct/dpct.hpp>

#include "common.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include <fstream>
#include <iostream>
#include <string>
#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <cmath>
#include <cstring>
#include <stdio.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
#include "iso3dfd.h"
#include <iostream>
#include <string>
#include <CL/sycl.hpp>
#include "device_selector.hpp"
#include "dpc_common.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ constexpr float sigma = 0.03f; // Standard Deviation
#include <unistd.h>
#endif // !WINDOWS

#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>
#include <cmath>
#include <iomanip>
#include <iostream>
Expand Down