peterbell10
peterbell10
Okay, I bound a new type with sol2: ```cpp sol::state_view sv(tolua_S); struct S { int member; }; sv.new_usertype("S", "foo", [] { FLOG("Hello World"); }, "bar", [] { return 20; },...
What does APIDump expect? I see that tolua++ uses ".get" and ".set" tables to implement properties.
I think if we were using a newer lua version then `__pairs` would let you enumerate the variables. Would upgrading lua be feasible?
With a bit of work, it should actually possible to mix tolua++ with sol2. We could just bind the variables with `tolua_variable` and bind the functions with sol2. It wouldn't...
Consider using [`std::is_member_object_pointer`](https://en.cppreference.com/w/cpp/types/is_member_object_pointer) as that will handle `const` members as well.
It's came from the lowering from a new operator I'm adding, but I'll see if I can reproduce with an existing operator.
This produces the same error on the current master branch ```python import triton.language as tl import triton import torch @triton.jit def test_fn(out_ptr, a_ptr, workspace, M, N, M_BLOCK: tl.constexpr, N_BLOCK: tl.constexpr):...
Reopening this as it seems the TMA hardware does support swizzling with only 4 rows of data. I get this result if it's helpful: ``` unswizzled: tensor([[ 0., 1., 2.,...
Tried it out in #8324 and CMake 4 still seems to be broken.
Thanks for your interest in triton, but this is a bug tracker not a place to ask for programming advice. Consider directing your questions to the triton channel on the...