Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for arg_layouts (0.63 sec)

  1. tensorflow/compiler/aot/compile.cc

      std::vector<const xla::Shape*> arg_layout_ptrs(pshape->parameters_size());
      std::vector<xla::Shape> arg_layouts(pshape->parameters_size());
      for (int i = 0; i < pshape->parameters_size(); ++i) {
        arg_layouts[i] = xla::Shape(*pshape->mutable_parameters(i));
        arg_layout_ptrs[i] = &arg_layouts[i];
      }
      xla::CompileOnlyClient::AotXlaComputationInstance instance;
      instance.computation = &computation;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top