Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
q10 committed May 15, 2024
1 parent 0d0e83c commit e24fed0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions fbgemm_gpu/experimental/gemm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
################################################################################

set(experimental_triton_python_source_files
triton/__init__.py
triton/fp8_gemm.py)
triton_gemm/__init__.py
triton_gemm/fp8_gemm.py)


################################################################################
# Install Python Files
################################################################################

install(FILES ${experimental_triton_python_source_files}
DESTINATION fbgemm_gpu/experimental/gemm/triton)
DESTINATION fbgemm_gpu/experimental/gemm/triton_gemm)
2 changes: 1 addition & 1 deletion fbgemm_gpu/experimental/gemm/test/fp8_gemm_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import torch
import triton

from fbgemm_gpu.experimental.gemm.triton.fp8_gemm import (
from fbgemm_gpu.experimental.gemm.triton_gemm.fp8_gemm import (
matmul_fp8_block,
matmul_fp8_row,
quantize_fp8_block,
Expand Down
2 changes: 1 addition & 1 deletion fbgemm_gpu/experimental/gemm/test/fp8_gemm_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import torch

from fbgemm_gpu.experimental.gemm.triton.fp8_gemm import (
from fbgemm_gpu.experimental.gemm.triton_gemm.fp8_gemm import (
matmul_fp8_block,
matmul_fp8_row,
quantize_fp8_block,
Expand Down

0 comments on commit e24fed0

Please sign in to comment.