Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for epstest (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (one_by_one && trivial_strides && trivial_dilations) {
        return "NHWC";
      }
    
      // If filter spatial dimensions are unknown or not 1x1 we prefer NCHW, because
      // it's the fastest option on NVIDIA GPUs with cuDNN library support.
      return "NCHW";
    }
    
    //===----------------------------------------------------------------------===//
    // Conv2dBackpropFilterOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    }
    
    Status ImporterBase::PrepareConvert(const Graph& graph,
                                        std::unique_ptr<GraphDef> graph_def) {
      // TODO(fengliuai): Converting to GraphDef and back is the easiest way to
      // clone a graph.
      // TODO(fengliuai): clone the graph without going to graph_def first.
      if (graph_def == nullptr) {
        graph_def = std::make_unique<GraphDef>();
        graph.ToGraphDef(graph_def.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    func TestTypeOfTypeOf(t *testing.T) {
    	// Check that all the type constructors return concrete *rtype implementations.
    	// It's difficult to test directly because the reflect package is only at arm's length.
    	// The easiest thing to do is just call a function that crashes if it doesn't get an *rtype.
    	check := func(name string, typ Type) {
    		if underlying := TypeOf(typ).String(); underlying != "*reflect.rtype" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. RELEASE.md

    * Introducing `tf.types.experimental.AtomicFunction` as the fastest way to perform TF computations in Python.
    
        * Can be accessed through `inference_fn` property of `ConcreteFunction`s
        * Does not support gradients.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top