Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for kResultShapeInfoTable (0.28 sec)

  1. tensorflow/compiler/aot/codegen_test_h.golden

      };
      static constexpr int32_t kResult2Shapes[] = {
    5
      };
      static const ShapeInfo* ResultShapeInfos() {
        static constexpr ShapeInfo kResultShapeInfoTable[kNumResults] = {
    { kResult0Shapes, 2 },
    { kResult1Shapes, 1 },
    { kResult2Shapes, 1 },
        };
        return kResultShapeInfoTable;
      };
    
      // Array of names of each positional argument, terminated by nullptr.
      static const char** StaticArgNames() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/codegen.cc

        static constexpr ShapeInfo kResultShapeInfoTable[kNumResults] = {
    )";
      for (int i = 0; i < ps.result().tuple_shapes_size(); ++i) {
        const xla::ShapeProto& shape = ps.result().tuple_shapes(i);
        *infos += absl::Substitute("{ kResult$0Shapes, $1 },\n", i,
                                   shape.dimensions_size());
      }
      *infos += R"(    };
        return kResultShapeInfoTable;
      })";
      return absl::OkStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top