Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for creators (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

          return ArraysAreCastCompatible(inferred, actual);
        }
      }];
    }
    
    def TF_EmptyOp : TF_Op<"Empty", []> {
      let summary = [{
    Creates a tensor with the given shape.
    
    This operation creates a tensor of `shape` and `dtype`.
      }];
    
      let arguments = (ins
        Arg<TF_Int32Tensor, [{1-D. Represents the shape of the output tensor.}]>:$shape,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. RELEASE.md

        *   Graduated experimental APIs:
            *   [`tf.data.Dataset.counter`](https://www.tensorflow.org/api_docs/python/tf/data/Dataset/#counter),
                which creates `Dataset`s of indefinite sequences of numbers.
            *   [`tf.data.Dataset.ignore_errors`](https://www.tensorflow.org/api_docs/python/tf/data/Dataset/#ignore_errors),
                which drops erroneous elements from `Dataset`s.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    		if errs := validateOverhead(tc.overhead, field.NewPath("resources"), PodValidationOptions{}); len(errs) == 0 {
    			t.Errorf("%q expected error", tc.Name)
    		}
    	}
    }
    
    // helper creates a pod with name, namespace and IPs
    func makePod(podName string, podNamespace string, podIPs []core.PodIP) core.Pod {
    	return core.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: podName, Namespace: podNamespace},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top