Skip to content

speedup find_copy a little bit more #644

speedup find_copy a little bit more

speedup find_copy a little bit more #644

Workflow file for this run

name: Windows
on: [push, pull_request, workflow_dispatch]
jobs:
WindowsRun:
runs-on: windows-2019
steps:
- uses: Jimver/cuda-toolkit@v0.2.8
id: cuda-toolkit
with:
cuda: '11.2.2'
linux-local-args: '["--toolkit"]'
- run: nvcc -V
- name: Checkout
uses: actions/checkout@v3
- name: Create build directory
run: mkdir ${{github.workspace}}/build
- name: Configure CMake
working-directory: ${{github.workspace}}/build
run: cmake ../
- name: Run VS
run: cmake --build ${{github.workspace}}/build --clean-first --config Release -j 4
#- name: Run Test
# working-directory: ${{github.workspace}}/build
# run: ctest --no-compress-output -T Test -C Release --output-on-failure