Skip to content
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.21...3.27 FATAL_ERROR)

project(dpctl
VERSION 0.15
VERSION 0.17
LANGUAGES CXX
DESCRIPTION "Python interface for XPU programming"
)
Expand Down
10 changes: 4 additions & 6 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{% set required_compiler_version = "2024.0" %}
{% set excluded_compiler_version1 = "2024.0.1" %}
{% set excluded_compiler_version2 = "2024.0.2" %}
{% set excluded_compiler_version3 = "2024.0.3" %}
{% set runtime_lower_bound = required_compiler_version %}
{% set runtime_upper_bound = "2024.3.0a0" %}

package:
name: dpctl
Expand All @@ -19,8 +18,7 @@ build:
requirements:
build:
- {{ compiler('cxx') }}
- {{ compiler('dpcpp') }} >={{ required_compiler_version }},!={{ excluded_compiler_version1 }},!={{ excluded_compiler_version2 }},!={{ excluded_compiler_version3 }} # [win]
- {{ compiler('dpcpp') }} >={{ required_compiler_version }},!={{ excluded_compiler_version1 }},!={{ excluded_compiler_version2 }} # [linux]
- {{ compiler('dpcpp') }} {{ required_compiler_version }}
- sysroot_linux-64 >=2.28 # [linux]
host:
- setuptools
Expand All @@ -35,7 +33,7 @@ requirements:
run:
- python
- {{ pin_compatible('numpy', min_pin='x.x', max_pin='x') }}
- dpcpp-cpp-rt >={{ required_compiler_version }}
- dpcpp-cpp-rt >={{ runtime_lower_bound }},<{{ runtime_upper_bound }}
- level-zero # [linux]

test:
Expand Down