Go - Interface Satisfaction - 1


  • A function declared with type (not a pointer), can call method by type value.
    Can use (&t) to call method by address as well
  • When a function declared with pointer, can’t call method by type value

沒有留言:

張貼留言

Lessons Learned While Benchmarking vLLM with GPU

Recently, I benchmarked vLLM on a GPU to better understand how much throughput can realistically be expected in an LLM serving setup. One ...