Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ExecuteWithBatch (0.39 sec)

  1. tensorflow/compiler/jit/tests/device_compiler_test_helper.h

      // Runs the graph using specified batch size both with and without XLA JIT
      // compilation. Returns an error if the results between the two do not match.
      Status ExecuteWithBatch(const GraphDef& graph, int batch);
    
      // Adds the suffix "_altered" to the HLO module names of all of the persistent
      // XLA compilation cache entries found at the specified directory. If none are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/device_compiler_test_helper.cc

                                   {{"dtype", DT_FLOAT}, {"shape", input_shape}});
      *graph.add_node() = MakeNode("m", "TestFn", {"a", "b", "c"}, {});
      return graph;
    }
    
    Status DeviceCompilerSerializeTest::ExecuteWithBatch(const GraphDef& graph,
                                                         int batch) {
      const TensorShape shape({batch, 4});
    
      // Compute the golden output tensor
      std::vector<Tensor> golden_output_tensors;
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top