TfComply คืออะไร
tfcompile
เป็นเครื่องมือแบบสแตนด์อโลนที่คอมไพล์กราฟ TensorFlow ล่วงหน้า (AOT) ลงในโค้ดสั่งการ ช่วยลดขนาดไบนารีทั้งหมดและยังหลีกเลี่ยงโอเวอร์เฮดรันไทม์บางอย่างได้ด้วย กรณีการใช้งาน tfcompile
โดยทั่วไปคือการรวบรวมกราฟการอนุมานเป็นโค้ดที่สั่งการได้สำหรับอุปกรณ์เคลื่อนที่
โดยปกติแล้วกราฟ TensorFlow จะดำเนินการโดยรันไทม์ของ TensorFlow ซึ่งทำให้เกิดโอเวอร์เฮดรันไทม์บางส่วนสำหรับการดำเนินการของแต่ละโหนดในกราฟ ซึ่งจะทำให้ขนาดไบนารีโดยรวมใหญ่ขึ้นด้วย เนื่องจากโค้ดสำหรับรันไทม์ของ TensorFlow จำเป็นต้องมีพร้อมใช้งานนอกเหนือจากกราฟเอง โค้ดสั่งการที่สร้างโดย tfcompile
ไม่ได้ใช้รันไทม์ของ TensorFlow และมีเพียงทรัพยากร Dependency บนเคอร์เนลที่ใช้ในการคำนวณจริงๆ เท่านั้น
คอมไพเลอร์สร้างขึ้นจากเฟรมเวิร์ก XLA การบริดจ์โค้ด TensorFlow กับเฟรมเวิร์ก XLA อยู่ภายใต้ tensorflow/compiler
ไฟล์ TFคอมไพล์ มีหน้าที่อะไร
tfcompile
จดกราฟย่อยที่ระบุโดยแนวคิดของ TensorFlow ของฟีดและการดึงข้อมูล แล้วสร้างฟังก์ชันที่นำกราฟย่อยดังกล่าวไปใช้
feeds
คืออาร์กิวเมนต์อินพุตสำหรับฟังก์ชัน และ fetches
คืออาร์กิวเมนต์เอาต์พุตสำหรับฟังก์ชัน ต้องระบุอินพุตทั้งหมดโดยฟีด กราฟย่อยที่ถูกตัดออกไม่สามารถมีโหนดตัวยึดตำแหน่งหรือโหนดตัวแปร เป็นเรื่องปกติที่จะระบุตัวยึดตำแหน่งและตัวแปรทั้งหมดเป็นฟีด ซึ่งจะทำให้กราฟย่อยที่ได้ไม่มีโหนดเหล่านี้อีกต่อไป ฟังก์ชันที่สร้างขึ้นจะสร้างแพ็กเกจเป็น cc_library
โดยมีไฟล์ส่วนหัวที่ส่งออกลายเซ็นของฟังก์ชันและไฟล์ออบเจ็กต์ที่มีการติดตั้งใช้งาน ผู้ใช้เขียนโค้ดเพื่อเรียกใช้ฟังก์ชันที่สร้างขึ้นตามความเหมาะสม
การใช้ tfคอมไพล์
ส่วนนี้แสดงรายละเอียดขั้นตอนระดับสูงในการสร้างไบนารีสั่งการด้วย tfcompile
จากกราฟย่อย TensorFlow ขั้นตอนมีดังต่อไปนี้
- ขั้นตอนที่ 1: กำหนดค่ากราฟย่อยที่จะรวบรวม
- ขั้นตอนที่ 2: ใช้มาโครบิลด์
tf_library
เพื่อรวบรวมกราฟย่อย - ขั้นตอนที่ 3: เขียนโค้ดเพื่อเรียกใช้กราฟย่อย
- ขั้นตอนที่ 4: สร้างไบนารีสุดท้าย
ขั้นตอนที่ 1: กำหนดค่ากราฟย่อยที่จะรวบรวม
ระบุฟีดและการดึงข้อมูลที่สอดคล้องกับอาร์กิวเมนต์อินพุตและเอาต์พุตสำหรับฟังก์ชันที่สร้างขึ้น จากนั้นกำหนดค่า feeds
และ fetches
ใน tensorflow.tf2xla.Config
# Each feed is a positional input argument for the generated function. The order
# of each entry matches the order of each input argument. Here “x_hold” and “y_hold”
# refer to the names of placeholder nodes defined in the graph.
feed {
id { node_name: "x_hold" }
shape {
dim { size: 2 }
dim { size: 3 }
}
}
feed {
id { node_name: "y_hold" }
shape {
dim { size: 3 }
dim { size: 2 }
}
}
# Each fetch is a positional output argument for the generated function. The order
# of each entry matches the order of each output argument. Here “x_y_prod”
# refers to the name of a matmul node defined in the graph.
fetch {
id { node_name: "x_y_prod" }
}
ขั้นตอนที่ 2: ใช้มาโครบิลด์ tf_library เพื่อคอมไพล์กราฟย่อย
ขั้นตอนนี้จะแปลงกราฟเป็น cc_library
โดยใช้มาโครบิลด์ tf_library
cc_library
ประกอบด้วยไฟล์ออบเจ็กต์ที่มีโค้ดที่สร้างจากกราฟ พร้อมกับไฟล์ส่วนหัวที่ให้สิทธิ์เข้าถึงโค้ดที่สร้างขึ้น tf_library
ใช้ tfcompile
เพื่อคอมไพล์กราฟ TensorFlow เป็นโค้ดสั่งการ
load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
# Use the tf_library macro to compile your graph into executable code.
tf_library(
# name is used to generate the following underlying build rules:
# <name> : cc_library packaging the generated header and object files
# <name>_test : cc_test containing a simple test and benchmark
# <name>_benchmark : cc_binary containing a stand-alone benchmark with minimal deps;
# can be run on a mobile device
name = "test_graph_tfmatmul",
# cpp_class specifies the name of the generated C++ class, with namespaces allowed.
# The class will be generated in the given namespace(s), or if no namespaces are
# given, within the global namespace.
cpp_class = "foo::bar::MatMulComp",
# graph is the input GraphDef proto, by default expected in binary format. To
# use the text format instead, just use the ‘.pbtxt’ suffix. A subgraph will be
# created from this input graph, with feeds as inputs and fetches as outputs.
# No Placeholder or Variable ops may exist in this subgraph.
graph = "test_graph_tfmatmul.pb",
# config is the input Config proto, by default expected in binary format. To
# use the text format instead, use the ‘.pbtxt’ suffix. This is where the
# feeds and fetches were specified above, in the previous step.
config = "test_graph_tfmatmul.config.pbtxt",
)
ในการสร้าง GraphDef Proto (test_graph_tfmatmul.pb) สำหรับตัวอย่างนี้ ให้เรียกใช้ make_test_graphs.py และระบุตำแหน่งเอาต์พุตด้วยแฟล็ก --out_dir
กราฟทั่วไปจะมี Variables
แสดงน้ำหนักที่ได้เรียนรู้ผ่านการฝึก แต่ tfcompile
รวบรวมกราฟย่อยที่มี Variables
ไม่ได้ เครื่องมือ freeze_graph.py จะแปลงตัวแปรเป็นค่าคงที่โดยใช้ค่าที่จัดเก็บไว้ในไฟล์จุดตรวจสอบ เพื่อความสะดวก มาโคร tf_library
รองรับอาร์กิวเมนต์ freeze_checkpoint
ซึ่งเรียกใช้เครื่องมือ ดูตัวอย่างเพิ่มเติมที่ tensorflow/compiler/aot/tests/BUILD
ค่าคงที่ที่แสดงในกราฟย่อยที่คอมไพล์แล้วจะรวมกันเป็นโค้ดที่สร้างขึ้นโดยตรง หากต้องการส่งผ่านค่าคงที่ไปยังฟังก์ชันที่สร้างขึ้น แทนที่จะรวมค่าคงที่ไว้ ให้ส่งค่าเป็นฟีด
ดูรายละเอียดเกี่ยวกับมาโครบิลด์ของ tf_library
ได้ที่ tfcompile.bzl
ดูรายละเอียดเกี่ยวกับเครื่องมือ tfcompile
ที่สำคัญได้ที่ tfcompile_main.cc
ขั้นตอนที่ 3: เขียนโค้ดเพื่อเรียกใช้กราฟย่อย
ขั้นตอนนี้ใช้ไฟล์ส่วนหัว (test_graph_tfmatmul.h
) ที่มาโครบิลด์ tf_library
สร้างขึ้นในขั้นตอนก่อนหน้าเพื่อเรียกใช้โค้ดที่สร้างขึ้น ไฟล์ส่วนหัวอยู่ในไดเรกทอรี bazel-bin
ที่สอดคล้องกับแพ็กเกจบิลด์ และตั้งชื่อตามแอตทริบิวต์ชื่อที่ตั้งค่าไว้ในมาโครบิลด์ tf_library
ตัวอย่างเช่น ส่วนหัวที่สร้างขึ้นสำหรับ test_graph_tfmatmul
จะเป็น test_graph_tfmatmul.h
ด้านล่างนี้คือเนื้อหาแบบย่อของ
สิ่งที่สร้างขึ้น ไฟล์ที่สร้างขึ้นใน bazel-bin
มีความคิดเห็นที่เป็นประโยชน์เพิ่มเติม
namespace foo {
namespace bar {
// MatMulComp represents a computation previously specified in a
// TensorFlow graph, now compiled into executable code.
class MatMulComp {
public:
// AllocMode controls the buffer allocation mode.
enum class AllocMode {
ARGS_RESULTS_AND_TEMPS, // Allocate arg, result and temp buffers
RESULTS_AND_TEMPS_ONLY, // Only allocate result and temp buffers
};
MatMulComp(AllocMode mode = AllocMode::ARGS_RESULTS_AND_TEMPS);
~MatMulComp();
// Runs the computation, with inputs read from arg buffers, and outputs
// written to result buffers. Returns true on success and false on failure.
bool Run();
// Arg methods for managing input buffers. Buffers are in row-major order.
// There is a set of methods for each positional argument.
void** args();
void set_arg0_data(float* data);
float* arg0_data();
float& arg0(size_t dim0, size_t dim1);
void set_arg1_data(float* data);
float* arg1_data();
float& arg1(size_t dim0, size_t dim1);
// Result methods for managing output buffers. Buffers are in row-major order.
// Must only be called after a successful Run call. There is a set of methods
// for each positional result.
void** results();
float* result0_data();
float& result0(size_t dim0, size_t dim1);
};
} // end namespace bar
} // end namespace foo
คลาส C++ ที่สร้างขึ้นเรียกว่า MatMulComp
ในเนมสเปซ foo::bar
เนื่องจากเป็น cpp_class
ที่ระบุไว้ในมาโคร tf_library
คลาสที่สร้างขึ้นทั้งหมดมี API ที่คล้ายกัน โดยมีความแตกต่างเพียงอย่างเดียวคือวิธีจัดการอาร์กิวเมนต์และบัฟเฟอร์ผลลัพธ์ เมธอดเหล่านี้จะแตกต่างกันไปตามจำนวนและประเภทของบัฟเฟอร์ ซึ่งมีการระบุโดยอาร์กิวเมนต์ feed
และ fetch
ในมาโคร tf_library
บัฟเฟอร์ที่มีการจัดการภายในคลาสที่สร้างขึ้นมี 3 ประเภท ได้แก่ args
แทนอินพุต results
แทนเอาต์พุต และ temps
แทนบัฟเฟอร์ชั่วคราวที่ใช้ภายในเพื่อคำนวณ โดยค่าเริ่มต้น แต่ละอินสแตนซ์ของคลาสที่สร้างขึ้นจะจัดสรรและจัดการบัฟเฟอร์ทั้งหมดเหล่านี้ให้คุณ ระบบอาจใช้อาร์กิวเมนต์ตัวสร้าง AllocMode
เพื่อเปลี่ยนลักษณะการทำงานนี้ บัฟเฟอร์ทั้งหมดสอดคล้องกับขอบเขต 64 ไบต์
คลาส C++ ที่สร้างขึ้นเป็นเพียง Wrapper ของโค้ดระดับล่างที่สร้างโดย XLA
ตัวอย่างการเรียกใช้ฟังก์ชันที่สร้างขึ้นตาม tfcompile_test.cc
#define EIGEN_USE_THREADS
#define EIGEN_USE_CUSTOM_THREAD_POOL
#include <iostream>
#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
#include "third_party/tensorflow/compiler/aot/tests/test_graph_tfmatmul.h" // generated
int main(int argc, char** argv) {
Eigen::ThreadPool tp(2); // Size the thread pool as appropriate.
Eigen::ThreadPoolDevice device(&tp, tp.NumThreads());
foo::bar::MatMulComp matmul;
matmul.set_thread_pool(&device);
// Set up args and run the computation.
const float args[12] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
std::copy(args + 0, args + 6, matmul.arg0_data());
std::copy(args + 6, args + 12, matmul.arg1_data());
matmul.Run();
// Check result
if (matmul.result0(0, 0) == 58) {
std::cout << "Success" << std::endl;
} else {
std::cout << "Failed. Expected value 58 at 0,0. Got:"
<< matmul.result0(0, 0) << std::endl;
}
return 0;
}
ขั้นตอนที่ 4: สร้างไบนารีสุดท้าย
ขั้นตอนนี้จะรวมไลบรารีที่ tf_library
สร้างขึ้นในขั้นตอนที่ 2 และโค้ดที่เขียนไว้ในขั้นตอนที่ 3 เพื่อสร้างไบนารีสุดท้าย ด้านล่างนี้เป็นตัวอย่างไฟล์ bazel
BUILD
# Example of linking your binary
# Also see //tensorflow/compiler/aot/tests/BUILD
load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
# The same tf_library call from step 2 above.
tf_library(
name = "test_graph_tfmatmul",
...
)
# The executable code generated by tf_library can then be linked into your code.
cc_binary(
name = "my_binary",
srcs = [
"my_code.cc", # include test_graph_tfmatmul.h to access the generated header
],
deps = [
":test_graph_tfmatmul", # link in the generated object file
"//third_party/eigen3",
],
linkopts = [
"-lpthread",
]
)