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
27 changes: 27 additions & 0 deletions .ci_support/linux_aarch64_.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
BUILD:
- aarch64-conda_cos7-linux-gnu
arm_variant_type:
- sbsa
c_compiler:
- gcc
c_compiler_version:
- '12'
cdt_arch:
- aarch64
cdt_name:
- cos7
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- gxx
cxx_compiler_version:
- '12'
docker_image:
- quay.io/condaforge/linux-anvil-aarch64
target_platform:
- linux-aarch64
zip_keys:
- - c_compiler_version
- cxx_compiler_version
25 changes: 25 additions & 0 deletions .travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 15 additions & 1 deletion README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions conda-forge.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
github:
branch_name: main
tooling_branch_name: main
conda_build:
error_overlinking: false
conda_forge_output_validation: true
github:
branch_name: main
tooling_branch_name: main
os_version:
linux_64: cos7
provider:
linux_aarch64: default
24 changes: 15 additions & 9 deletions recipe/Makefile.patch
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
--- samples/Makefile 2022-06-24 00:23:23.000000000 +0000
+++ samples/Makefile.new 2022-06-27 15:04:32.235125647 +0000
@@ -35,8 +35,8 @@
--- samples/Makefile 2023-08-14 23:46:34.000000000 -0400
+++ samples/Makefile.new 2023-12-19 11:54:43.264080087 -0500
@@ -35,13 +35,13 @@

# Common includes and paths for CUDA
ARCH ?= $(shell uname -m)
-CUDA_PATH := /usr/local/cuda
-CUFILE_PATH ?= /usr/local/cuda/targets/x86_64-linux/lib/
-CUFILE_INCLUDE_PATH ?= /usr/local/cuda/targets/x86_64-linux/include/
+CUDA_PATH := ${PREFIX}
+CUFILE_PATH ?= $(CUDA_PATH)/targets/x86_64-linux/lib/
+CUFILE_INCLUDE_PATH ?= $(CUDA_PATH)/targets/x86_64-linux/include/
ifeq ($(ARCH),aarch64)
- CUFILE_PATH ?= /usr/local/cuda/targets/sbsa-linux/lib/
- CUFILE_INCLUDE_PATH ?= /usr/local/cuda/targets/sbsa-linux/include/
+ CUFILE_PATH ?= $(CUDA_PATH)/targets/sbsa-linux/lib/
+ CUFILE_INCLUDE_PATH ?= $(CUDA_PATH)/targets/sbsa-linux/include/
else
- CUFILE_PATH ?= /usr/local/cuda/targets/x86_64-linux/lib/
- CUFILE_INCLUDE_PATH ?= /usr/local/cuda/targets/x86_64-linux/include/
+ CUFILE_PATH ?= $(CUDA_PATH)/targets/x86_64-linux/lib/
+ CUFILE_INCLUDE_PATH ?= $(CUDA_PATH)/targets/x86_64-linux/include/
endif
CXXFLAGS := -Wall
CXXFLAGS += -I $(CUDA_PATH)/include/
CXXFLAGS += -I $(CUFILE_INCLUDE_PATH)

8 changes: 4 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name = "libcufile" %}
{% set version = "1.6.1.9" %}
{% set cuda_version = "12.1" %}
{% set version = "1.7.2.10" %}
{% set cuda_version = "12.2" %}
{% set platform = "linux-x86_64" %} # [linux64]
{% set platform = "linux-sbsa" %} # [aarch64]
{% set target_name = "x86_64-linux" %} # [linux64]
Expand All @@ -13,8 +13,8 @@ package:

source:
url: https://developer.download.nvidia.com/compute/cuda/redist/{{ name }}/{{ platform }}/{{ name }}-{{ platform }}-{{ version }}-archive.{{ extension }}
sha256: c2a635c98aaafff7c7c9daf4c1a60c96c2cbd7b580cff488a26376f42194d9a0 # [linux64]
sha256: 4e8d2b525322be9ab6ae574bd1d0325a4bf9c6c3bbdaa1611b5b969b7b34b0c4 # [aarch64]
sha256: 60f9e442b09998d1937827b4f56982bfc22fa1c15ede9bc1261e9cc947a94087 # [linux64]
sha256: 00be847ca86b90fb540174ad70f34899c2f8f351637775b9c5fef5b7ad3adb76 # [aarch64]
patches:
- Makefile.patch

Expand Down