mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 23:34:56 +00:00
Added official examples from github.com/modular/modular: - gpu-intro, gpu-functions, gpu-block-and-warp (GPU programming) - layout_tensor, layouts (tensor operations) - life (Conway's Game of Life) - operators (custom operators) - process (subprocess handling) - python-interop (Python integration) - testing (unit test patterns) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
256 B
Python
11 lines
256 B
Python
#Load the custom rule for creating Mojo binaries.
|
|
load("//bazel:api.bzl", "mojo_binary")
|
|
|
|
package(default_visibility = ["//visibility:private"])
|
|
|
|
mojo_binary(
|
|
name = "process_example",
|
|
srcs = ["process_example.mojo"],
|
|
deps = ["@mojo//:std"],
|
|
)
|