Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
shiinamiyuki committed Jul 23, 2024
1 parent d8606ef commit 9697e84
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: '3.10'
python-version: '3.11'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
Expand Down
1 change: 0 additions & 1 deletion luisa_lang/_math_type_exports.py

This file was deleted.

2 changes: 1 addition & 1 deletion luisa_lang/lang.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
overload,
Any,
)
from luisa_lang._math_type_exports import *
from luisa_lang.math_types import *
from luisa_lang._markers import _builtin_type, _builtin, _intrinsic_impl
import luisa_lang.hir as hir
import luisa_lang.parse as parse
Expand Down
1 change: 1 addition & 0 deletions luisa_lang/math_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1296,3 +1296,4 @@ def __floordiv__(self, _other: tp.Union['ulong4', u64, int]) -> 'ulong4': retur
def __rfloordiv__(self, _other: tp.Union['ulong4', u64, int]) -> 'ulong4': return _intrinsic_impl()
_ctx.types[ulong4] = _hir.VectorType(tp.cast(_hir.ScalarType, _ctx.types[u64]), 4)

__all__ = ['FLOAT_TYPES', 'FloatType', 'FloatBuiltin', 'abs', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atanh', 'ceil', 'cos', 'cosh', 'exp', 'floor', 'log', 'log10', 'log2sin', 'sinh', 'sqrt', 'tan', 'tanh', 'trunc', 'atan2', 'copysign', 'f32', 'f64', 'i8', 'u8', 'i16', 'u16', 'i32', 'u32', 'i64', 'u64', 'bool2', 'float2', 'double2', 'byte2', 'ubyte2', 'short2', 'ushort2', 'int2', 'uint2', 'long2', 'ulong2', 'bool3', 'float3', 'double3', 'byte3', 'ubyte3', 'short3', 'ushort3', 'int3', 'uint3', 'long3', 'ulong3', 'bool4', 'float4', 'double4', 'byte4', 'ubyte4', 'short4', 'ushort4', 'int4', 'uint4', 'long4', 'ulong4']

0 comments on commit 9697e84

Please sign in to comment.