Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 116 of 116 for CST (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          "tf.MakeIterator"(%arg0, %0) : (tensor<!tf_type.variant>, tensor<!tf_type.resource>) -> ()
          %cst = "tf.Const"() {value = dense<true> : tensor<i1>} : () -> tensor<i1>
          %1:2 = "tf.WhileRegion"(%cst, %arg1) ({
          ^bb0(%arg2: tensor<i1>, %arg3: tensor<i64>):
            "tf.Yield"(%arg2) : (tensor<i1>) -> ()
          }, {
          ^bb0(%arg2: tensor<i1>, %arg3: tensor<i64>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        %cst = "tf.Const"() {value = dense<512> : tensor<i32>} : () -> tensor<i32>
        %2:4 = "tf_device.launch"() ({
          %4 = "tf.Cast"(%arg0) {Truncate = false} : (tensor<512xi64>) -> tensor<512xi32>
          %5 = "tf.TPUCopyWithDynamicShape"(%4,  %cst) {operandSegmentSizes = array<i32: 1, 1>} : (tensor<512xi32>, tensor<i32>) -> tensor<512xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public void DefaultConsumer(); public void consumeLine(String); } org/codehaus/plexus/util/cli/EnhancedStringTokeni.class package org.codehaus.plexus.util.cli; public final synchronized class EnhancedStringTokeni { private java.util.StringTokenizer cst; String cdelim; final boolean cdelimSingleChar; final char cdelimChar; boolean creturnDelims; String lastToken; boolean delimLast; public void EnhancedStringTokeni(String); public void EnhancedStringTokeni(String, String); public void EnhancedStringTokeni(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto cst =
            rewriter.create<mhlo::ConstantOp>(op.getLoc(), zero_attr).getResult();
        auto split_updates = rewriter.create<TF::SplitOp>(
            op.getLoc(), split_updates_type, cst, updates);
    
        SmallVector<Value, 6> input_indices;
        input_indices.resize(input_type.getRank(), cst);
    
        for (auto pair :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    	// check String form of ChanDir
    	if crt.ChanDir().String() != "<-chan" {
    		t.Errorf("chan dir: have %q, want %q", crt.ChanDir().String(), "<-chan")
    	}
    	if cst.ChanDir().String() != "chan<-" {
    		t.Errorf("chan dir: have %q, want %q", cst.ChanDir().String(), "chan<-")
    	}
    }
    
    func TestChanOfGC(t *testing.T) {
    	done := make(chan bool, 1)
    	go func() {
    		select {
    		case <-done:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. doc/go_spec.html

    <p>
    Type definitions may be used to define different boolean, numeric,
    or string types and associate methods with them:
    </p>
    
    <pre>
    type TimeZone int
    
    const (
    	EST TimeZone = -(5 + iota)
    	CST
    	MST
    	PST
    )
    
    func (tz TimeZone) String() string {
    	return fmt.Sprintf("GMT%+dh", tz)
    }
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top