Skip to content

Commit

Permalink
Test fixing precision issue on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
Diptorup Deb committed Feb 8, 2024
1 parent f2cf168 commit 597e148
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ def declare_spirv_const(


def _intrinsic_spirv_global_index_const(
ty_context, # pylint: disable=unused-argument# pylint: disable=unused-argument
ty_context, # pylint: disable=unused-argument
ty_dim, # pylint: disable=unused-argument
const_name: str,
):
"""Generates instruction to get spirv index from const_name."""
sig = types.int64(types.int32)
sig = types.intp(types.int32)

def _intrinsic_spirv_global_index_const_gen(
context: SPIRVTargetContext,
Expand Down

0 comments on commit 597e148

Please sign in to comment.