Revision cbb113690814e9930a8942270eef8bb4f9c639c2 authored by Jing Pu on 09 August 2018, 01:57:53 UTC, committed by Jing Pu on 09 August 2018, 01:57:53 UTC
1 parent 37e510d
Raw File
BUILD
load("@halide//:halide.bzl", "halide_library")

halide_library(
  name="bazeldemo",
  srcs=["bazeldemo_generator.cpp"],
  extra_outputs=["stmt", "schedule"],
)

cc_binary(
    name = "main",
    srcs = ["main.cpp"],
    deps = [
      ":bazeldemo",
      "@halide//:halide_buffer"
    ],
)
back to top