repo_name stringclasses 10
values | file_path stringlengths 29 222 | content stringlengths 24 926k | extention stringclasses 5
values |
|---|---|---|---|
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/Jupyter/gpu-optimization-sycl-training/03_Memory_Optimization/lab/buffer_mem_move_2.cpp | //==============================================================
// Copyright © Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <sycl/sycl.hpp>
int main() {
constexpr int num_items = 1024*1000*1000;
std::vector<int> a(num_items);
for... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/Jupyter/gpu-optimization-sycl-training/03_Memory_Optimization/lab/buffer_loop.cpp | //==============================================================
// Copyright © Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <sycl/sycl.hpp>
#include <chrono>
constexpr int N = 16;
constexpr int STEPS = 10000;
int main() {
std::vect... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/Jupyter/gpu-optimization-sycl-training/03_Memory_Optimization/lab/buffers.cpp | //==============================================================
// Copyright © Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <sycl/sycl.hpp>
int main() {
constexpr int N = 16;
std::vector<int> host_data(N, 10);
sycl::queue q;
s... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/Jupyter/gpu-optimization-sycl-training/03_Memory_Optimization/lab/buffer_host_ptr.cpp | //==============================================================
// Copyright © Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <sycl/sycl.hpp>
int main() {
constexpr int num_items = 16;
constexpr int iter = 1;
std::vector<int> a(nu... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/Jupyter/gpu-optimization-sycl-training/03_Memory_Optimization/lab/buffer_mem_move_0.cpp | //==============================================================
// Copyright © Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <sycl/sycl.hpp>
int main() {
constexpr int num_items = 1024*1000*1000;
std::vector<int> a(num_items);
for... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/Jupyter/gpu-optimization-sycl-training/03_Memory_Optimization/lab/buffer_access_modes.cpp | //==============================================================
// Copyright © Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <sycl/sycl.hpp>
constexpr int N = 1024000000;
int main() {
std::vector<int> a(N, 1);
std::vector<int> b(N... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/Jupyter/gpu-optimization-sycl-training/03_Memory_Optimization/lab/usm_copy_partial.cpp | //==============================================================
// Copyright © Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <sycl/sycl.hpp>
static constexpr size_t N = 102400000; // global size
int main() {
auto start = std::chrono::... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/Jupyter/gpu-optimization-sycl-training/03_Memory_Optimization/lab/usm_overlap_copy.cpp | //==============================================================
// Copyright © Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <sycl/sycl.hpp>
#define NITERS 10
#define KERNEL_ITERS 10000
#define NUM_CHUNKS 10
#define CHUNK_SIZE 10000000
... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/Jupyter/gpu-optimization-sycl-training/03_Memory_Optimization/lab/usm_shared.cpp | //==============================================================
// Copyright © Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <sycl/sycl.hpp>
int main() {
sycl::queue q;
std::cout << "Device : " << q.get_device().get_info<sycl::info::... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/Jupyter/gpu-optimization-sycl-training/03_Memory_Optimization/lab/buffer_mem_move_3.cpp | //==============================================================
// Copyright © Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <sycl/sycl.hpp>
int main() {
constexpr int num_items = 1024*1000*1000;
std::vector<int> a(num_items);
for... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/Jupyter/gpu-optimization-sycl-training/03_Memory_Optimization/lab/align.hpp | #ifndef __ALIGN
#define __ALIGN 1
enum class Alignment : size_t {
Normal = sizeof(void *),
SSE = 16,
AVX = 32,
PAGE = 4096,
};
namespace detail {
void *allocate_aligned_memory(size_t align, size_t size);
void deallocate_aligned_memory(void *ptr) noexcept;
} // namespace detail
template <typename T, Alignment... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/ParallelPatterns/PrefixSum/src/PrefixSum.cpp | //==============================================================
// Copyright © 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
//
// PrefixSum: this code sample implements the inclusive scan (prefix sum) in
// parallel. That is, given a randomi... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/ParallelPatterns/loop-unroll/src/loop-unroll.cpp | //==============================================================
// This sample demonstrates the use of loop unrolling as a simple optimization
// technique to speed up compute and increase memory access throughput.
//==============================================================
// Copyright © Intel Corporation
//
// ... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/ParallelPatterns/dpc_reduce/src/main.cpp | //==============================================================
// Copyright © 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
// The include folder is located at %ONEAPI_ROOT%\dev-utilities\latest\include
// on your development system.
#inclu... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/ParallelPatterns/histogram/src/main.cpp | //==============================================================
// Copyright © 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
// oneDPL headers should be included before standard headers
#include <oneapi/dpl/algorithm>
#include <oneapi/dpl/ex... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/Common/helper_timer.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/Common/helper_string.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/Common/helper_image.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/Common/exception.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/Common/helper_cuda.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/Common/helper_functions.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/Samples/4_CUDA_Libraries/oceanFFT/oceanFFT.cpp.dp.cpp | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/Samples/4_CUDA_Libraries/oceanFFT/oceanFFT_kernel.dp.cpp | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/ccl_utils.hpp | //==---- ccl_utils.hpp----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===/... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/util.hpp | //==---- util.hpp ---------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/image.hpp | //==---- image.hpp --------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/kernel.hpp | //==---- kernel.hpp -------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/dpct.hpp | //==---- dpct.hpp ---------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/dnnl_utils.hpp | //==---- dnnl_utils.hpp ---------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/lapack_utils.hpp | //==---- lapack_utils.hpp -------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/fft_utils.hpp | //==---- fft_utils.hpp ----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/lib_common_utils.hpp | //==---- lib_common_utils.hpp ---------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/sparse_utils.hpp | //==---- sparse_utils.hpp -------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/device.hpp | //==---- device.hpp -------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/memory.hpp | //==---- memory.hpp -------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/dpl_utils.hpp | //==---- dpl_utils.hpp ----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/math.hpp | //==---- math.hpp ---------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/blas_utils.hpp | //==---- blas_utils.hpp----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/atomic.hpp | //==---- atomic.hpp -------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/rng_utils.hpp | //==---- rng_utils.hpp ----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/numeric.h | //==---- numeric.h --------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/iterators.h | //==---- iterators.h ------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/algorithm.h | //==---- algorithm.h ------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/memory.h | //==---- memory.h ---------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/vector.h | //==---- vector.h ---------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/dpcpp_extensions.h | //==---- dpcpp_extensions.h ------------------*- C++ -*---------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------===//
#ifndef ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/functional.h | //==---- functional.h -----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/Common/helper_timer.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/Common/helper_string.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/Common/helper_image.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/Common/exception.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/Common/helper_cuda.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/Common/helper_functions.h | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/Samples/4_CUDA_Libraries/oceanFFT/oceanFFT.cpp.dp.cpp | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/Samples/4_CUDA_Libraries/oceanFFT/oceanFFT_kernel.dp.cpp | /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of condi... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/ccl_utils.hpp | //==---- ccl_utils.hpp----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===/... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/util.hpp | //==---- util.hpp ---------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/image.hpp | //==---- image.hpp --------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/kernel.hpp | //==---- kernel.hpp -------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/dpct.hpp | //==---- dpct.hpp ---------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/dnnl_utils.hpp | //==---- dnnl_utils.hpp ---------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/lapack_utils.hpp | //==---- lapack_utils.hpp -------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/fft_utils.hpp | //==---- fft_utils.hpp ----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/lib_common_utils.hpp | //==---- lib_common_utils.hpp ---------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/sparse_utils.hpp | //==---- sparse_utils.hpp -------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/device.hpp | //==---- device.hpp -------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/memory.hpp | //==---- memory.hpp -------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/dpl_utils.hpp | //==---- dpl_utils.hpp ----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/math.hpp | //==---- math.hpp ---------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/blas_utils.hpp | //==---- blas_utils.hpp----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/atomic.hpp | //==---- atomic.hpp -------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/rng_utils.hpp | //==---- rng_utils.hpp ----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/dpl_extras/numeric.h | //==---- numeric.h --------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/dpl_extras/iterators.h | //==---- iterators.h ------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/dpl_extras/algorithm.h | //==---- algorithm.h ------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/dpl_extras/memory.h | //==---- memory.h ---------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/dpl_extras/vector.h | //==---- vector.h ---------------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/dpl_extras/dpcpp_extensions.h | //==---- dpcpp_extensions.h ------------------*- C++ -*---------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------===//
#ifndef ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/guided_OceanFFT_SYCLMigration/01_dpct_output/include/dpct/dpl_extras/functional.h | //==---- functional.h -----------------------------*- C++ -*----------------==//
//
// Copyright (C) Intel Corporation
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/DiscreteCosineTransform/src/DCT.hpp | #pragma pack(push, 1)
// This is the data structure which is going to represent one pixel value in RGB
// format
typedef struct {
unsigned char blue;
unsigned char green;
unsigned char red;
} rgb;
// This block is only used when build for Structure of Arays (SOA) with Array
// Notation
typedef struct {
unsign... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SpectralMethods/DiscreteCosineTransform/src/DCT.cpp | #include "DCT.hpp"
#include <sycl/sycl.hpp>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include "dpc_common.hpp"
#define STB_IMAGE_IMPLEMENTATION
#include "stb/stb_image.h"
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include "stb/stb_image_write.h"
using namespace dpc_common;
using namespace sycl;
#ifdef PER... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/SparseLinearAlgebra/merge-spmv/src/spmv.cpp | //==============================================================
// This sample provides a parallel implementation of a merge based sparse matrix
// and vector multiplication algorithm using SYCL. The input matrix is in
// compressed sparse row format.
//==============================================================
//... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/OpenCLInterop/src/sycl_with_opencl_objects.dp.cpp | //==============================================================
// Copyright © 2021 Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <CL/opencl.h>
#include <stdio.h>
#include <sycl/sycl.hpp>
#include <sycl/backend/opencl.hpp>
using namespac... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/MandelbrotSDL.cpp | #include <SDL2/SDL.h>
#include <sycl/sycl.hpp>
#include <iomanip>
#include <iostream>
#include "Mandel.hpp"
using namespace sycl;
using namespace std;
constexpr int windowWidth = 640;
constexpr int windowHeight = 480;
void ShowDevice(queue& q) {
// Print device info.
auto device = q.get_device();
auto p_name = de... | cpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/Mandel.hpp | #pragma once
#include <complex>
#include <sycl/sycl.hpp>
using namespace sycl;
using namespace std;
template <typename T> std::complex<T> complex_square(std::complex<T> c)
{
return std::complex<T>(c.real() * c.real() - c.imag() * c.imag(), c.real() * c.imag() * 2);
}
template <typename T> class MandelParameters {
... | hpp |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_hints.h | /*
Simple DirectMedia Layer
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_vulkan.h | /*
Simple DirectMedia Layer
Copyright (C) 2017, Mark Callow
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_types.h | /*
Simple DirectMedia Layer
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_config_windows.h | /*
Simple DirectMedia Layer
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_audio.h | /*
Simple DirectMedia Layer
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_opengles2_gl2platform.h | #ifndef __gl2platform_h_
#define __gl2platform_h_
/*
** Copyright 2017-2020 The Khronos Group Inc.
** SPDX-License-Identifier: Apache-2.0
*/
/* Platform-specific types and definitions for OpenGL ES 2.X gl2.h
*
* Adopters may modify khrplatform.h and this file to suit their platform.
* Please contribute modificati... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_error.h | /*
Simple DirectMedia Layer
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_opengles2_gl2ext.h | #ifndef __gles2_gl2ext_h_
#define __gles2_gl2ext_h_ 1
#ifdef __cplusplus
extern "C" {
#endif
/*
** Copyright 2013-2020 The Khronos Group Inc.
** SPDX-License-Identifier: MIT
**
** This header is generated from the Khronos OpenGL / OpenGL ES XML
** API Registry. The current version of the Registry, generator scripts
*... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_version.h | /*
Simple DirectMedia Layer
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_keycode.h | /*
Simple DirectMedia Layer
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_opengles2_gl2.h | #ifndef __gles2_gl2_h_
#define __gles2_gl2_h_ 1
#ifdef __cplusplus
extern "C" {
#endif
/*
** Copyright 2013-2020 The Khronos Group Inc.
** SPDX-License-Identifier: MIT
**
** This header is generated from the Khronos OpenGL / OpenGL ES XML
** API Registry. The current version of the Registry, generator scripts
** used... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_blendmode.h | /*
Simple DirectMedia Layer
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_filesystem.h | /*
Simple DirectMedia Layer
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_keyboard.h | /*
Simple DirectMedia Layer
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | h |
oneAPI-samples | data/projects/oneAPI-samples/DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/ThirdParty/include/SDL2/SDL_cpuinfo.h | /*
Simple DirectMedia Layer
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | h |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.