Skip to content

Commit cab6de1

Browse files
Promoting changes from the main branch to the development branch (#5)
* Add CODEOWNERS file for oneMKL samples (#1) * Added copyrights to remained files (#4) --------- Co-authored-by: Andrew T. Barker <andrew1.barker@intel.com>
1 parent 3ce2b2b commit cab6de1

29 files changed

Lines changed: 185 additions & 3 deletions

File tree

.github/CODEOWNERS

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
american_options/ @oneapi-src/onemkl-rng-write
2+
batched_linear_solver/ @oneapi-src/onemkl-lapack-write
3+
binomial/ @oneapi-src/onemkl-rng-write
4+
black_scholes/ @oneapi-src/onemkl-rng-write
5+
block_cholesky_decomposition/ @oneapi-src/onemkl-lapack-write
6+
block_lu_decomposition/ @oneapi-src/onemkl-lapack-write
7+
computed_tomography/ @oneapi-src/onemkl-dft-write
8+
fourier_correlation/ @oneapi-src/onemkl-dft-write
9+
matrix_mul_mkl/ @oneapi-src/onemkl-blas-write
10+
monte_carlo_european_opt/ @oneapi-src/onemkl-rng-write
11+
monte_carlo_pi/ @oneapi-src/onemkl-rng-write
12+
random_sampling_without_replacement/ @oneapi-src/onemkl-rng-write
13+
sparse_conjugate_gradient/ @oneapi-src/onemkl-sparse-write
14+
student_t_test/ @oneapi-src/onemkl-rng-write

american_options/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#===============================================================================
2+
# Copyright (C) 2026 Intel Corporation
3+
#
4+
# SPDX-License-Identifier: MIT
5+
#===============================================================================
6+
17
cmake_minimum_required (VERSION 3.4.0)
28
set(CMAKE_CXX_COMPILER "icpx")
39
project (american_options)

american_options/src/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#===============================================================================
2+
# Copyright (C) 2026 Intel Corporation
3+
#
4+
# SPDX-License-Identifier: MIT
5+
#===============================================================================
6+
17
if(USE_DEVICE_API)
28
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsycl -DWITH_FUSED_BETA=1 -DUSE_DEVICE_API=1 ")
39
add_executable (american_monte_carlo_device longstaff_schwartz_svd_2.dp.cpp)

american_options/src/utils.hpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
//==============================================================
2+
// Copyright © 2026 Intel Corporation
3+
//
4+
// SPDX-License-Identifier: MIT
5+
// =============================================================
6+
17
#include <sycl/sycl.hpp>
28

39
namespace internal

batched_linear_solver/makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#===============================================================================
2+
# Copyright (C) 2021 Intel Corporation
3+
#
4+
# SPDX-License-Identifier: MIT
5+
#===============================================================================
6+
17
# Makefile for Linux
28

39
default: run_all

binomial/GNUmakefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#===============================================================================
2+
# Copyright (C) 2023 Intel Corporation
3+
#
4+
# SPDX-License-Identifier: MIT
5+
#===============================================================================
6+
17
all: binomial_sycl
28

39
init_on_host ?= 0

binomial/makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
all: binomial_sycl.exe
1+
#===============================================================================
2+
# Copyright (C) 2023 Intel Corporation
3+
#
4+
# SPDX-License-Identifier: MIT
5+
#===============================================================================
6+
7+
all: binomial_sycl.exe
28

39
!if "$(init_on_host)" == "1"
410
INIT_ON_HOST=/DINIT_ON_HOST=1

black_scholes/GNUmakefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1+
#===============================================================================
2+
# Copyright (C) 2023 Intel Corporation
3+
#
4+
# SPDX-License-Identifier: MIT
5+
#===============================================================================
6+
17
# ==============================================================================
28
# Content:
39
# Black-Scholes formula example makefile
410
# ==============================================================================
511

6-
all: black_scholes_sycl
12+
all: black_scholes_sycl
713

814
init_on_host ?= 0
915

black_scholes/makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
all: black_scholes_sycl.exe
1+
#===============================================================================
2+
# Copyright (C) 2023 Intel Corporation
3+
#
4+
# SPDX-License-Identifier: MIT
5+
#===============================================================================
6+
7+
all: black_scholes_sycl.exe
28

39
!if "$(init_on_host)" == "1"
410
INIT_ON_HOST=/DINIT_ON_HOST=1

block_cholesky_decomposition/GNUmakefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#===============================================================================
2+
# Copyright (C) 2020 Intel Corporation
3+
#
4+
# SPDX-License-Identifier: MIT
5+
#===============================================================================
6+
17
# Makefile for GNU make
28

39
all: factor solve

0 commit comments

Comments
 (0)