Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for transport (0.16 sec)

  1. tensorflow/c/c_api_test.cc

                           TF_Operation* r, const char* name,
                           bool transpose_a = false, bool transpose_b = false) {
        TF_OperationDescription* desc = TF_NewOperation(graph, "MatMul", name);
        if (transpose_a) {
          TF_SetAttrBool(desc, "transpose_a", 1);
        }
        if (transpose_b) {
          TF_SetAttrBool(desc, "transpose_b", 1);
        }
        TF_AddInput(desc, {l, 0});
        TF_AddInput(desc, {r, 0});
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  2. tensorflow/BUILD

            "//tensorflow/lite:string_util",
            "//tensorflow/lite:util",
            "//tensorflow/python/grappler:cost_analyzer_lib",
            "//tensorflow/tools/graph_transforms:transform_graph_lib",
        ] + select({
            "//tensorflow/compiler/mlir/python:disable_mlir_config": [],
            "//conditions:default": [
                "//tensorflow/compiler/mlir/python:mlir",
            ],
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
Back to top