• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Description:
2# This is a modified farmhash to only include GPU-related functions.
3
4package(
5    default_visibility = ["//visibility:public"],
6)
7
8licenses(["notice"])  # MIT
9
10cc_library(
11    name = "farmhash_gpu",
12    hdrs = ["src/farmhash_gpu.h"],
13    include_prefix = "third_party/farmhash_gpu",
14)
15