Skip to content

Commit

Permalink
Add support for fastmath kwarg.
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Aug 17, 2023
1 parent 1b81c4d commit aff8cd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/execution.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export @cuda, cudaconvert, cufunction, dynamic_cufunction, nextwarp, prevwarp
## high-level @cuda interface

const MACRO_KWARGS = [:dynamic, :launch]
const COMPILER_KWARGS = [:kernel, :name, :always_inline, :minthreads, :maxthreads, :blocks_per_sm, :maxregs]
const COMPILER_KWARGS = [:kernel, :name, :always_inline, :minthreads, :maxthreads, :blocks_per_sm, :maxregs, :fastmath]
const LAUNCH_KWARGS = [:cooperative, :blocks, :threads, :shmem, :stream]


Expand Down

0 comments on commit aff8cd3

Please sign in to comment.