Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,683 for nextB (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/executor_canonicalize.mlir

      }
      func.return %0#2, %0#1 : tensor<i1>, tensor<i1>
    }
    
    // CHECK-NEXT: %[[GRAPH:[0-9]*]]:3 = tf_executor.graph {
    // CHECK-NEXT:   %[[ISLAND_0:.*]]:3, %{{.*}} = tf_executor.island {
    // CHECK-NEXT:     %[[OP_A:[0-9]*]] = "tf.opA"(%[[ARG_0]])
    // CHECK-NEXT:     %[[OP_B:[0-9]*]] = "tf.opB"(%[[OP_A]])
    // CHECK-NEXT:     %[[OP_C:[0-9]*]] = "tf.opC"(%[[OP_B]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

    // CHECK-NEXT: %[[SHAPE:.*]] = "tf.RiscShape"(%arg0) {T = i32} : (tensor<2x3xf32>) -> tensor<*xi32>
    // CHECK-NEXT: %[[ALPHA1:.*]] = "tf.RiscBroadcast"(%[[ALPHA]], %[[SHAPE]]) : (tensor<f32>, tensor<*xi32>) -> tensor<*xf32>
    // CHECK-NEXT: %[[MAX:.*]] = "tf.RiscMaximum"(%arg0, %[[ALPHA1]]) : (tensor<2x3xf32>, tensor<*xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. src/cmd/relnote/relnote_test.go

    // Check that each file in api/next has corresponding release note files in doc/next.
    func TestCheckAPIFragments(t *testing.T) {
    	if !*flagCheck {
    		t.Skip("-check not specified")
    	}
    	root := testenv.GOROOT(t)
    	rootFS := os.DirFS(root)
    	files, err := fs.Glob(rootFS, "api/next/*.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Logf("checking release notes for %d files in api/next", len(files))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 16:31:53 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. src/internal/saferio/io.go

    			}
    		}
    		return buf, nil
    	}
    
    	var buf []byte
    	buf1 := make([]byte, chunk)
    	for n > 0 {
    		next := n
    		if next > chunk {
    			next = chunk
    		}
    		_, err := r.ReadAt(buf1[:next], off)
    		if err != nil {
    			return nil, err
    		}
    		buf = append(buf, buf1[:next]...)
    		n -= next
    		off += int64(next)
    	}
    	return buf, nil
    }
    
    // SliceCapWithSize returns the capacity to use when allocating a slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 00:34:05 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/importer_test_min_max.cc

      // FB-LABEL:     name: "arg0",
      // FB-NEXT:      quantization: {
      // FB-NEXT:              min: [ -1.0 ],
      // FB-NEXT:              max: [ 1.0 ]
      // FB-NEXT:      }
    
      // FB-LABEL:     name: "arg1",
      // FB-NEXT:            quantization: {
      // FB-EMPTY:
      // FB-NEXT:            }
    
      // FB-LABEL:     name: "tfl.fully_connected",
      // FB-NEXT:      quantization: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. test/typeparam/issue47878.go

    	var x interface{} = s
    	_ = (x.(Src5[T]))()
    }
    
    func main() {
    	var src1 Src1[int]
    	src1.Next()
    
    	var src2 Src2[int]
    	src2.Next()
    
    	var src3 Src3[string]
    	src3.Next()
    
    	var src4 Src4[int]
    	src4.Next()
    
    	var src5 Src5[int]
    	src5.Next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 802 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/noop.mlir

        tf_executor.island wraps "tf.NoOp"() {} : () -> () loc("noop")
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK: node {
    // CHECK-NEXT:  name: "noop"
    // CHECK-NEXT:  op: "NoOp"
    // CHECK-NEXT:  experimental_debug_info {
    // CHECK-NEXT:  }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 370 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/hash_table_v1.py

    # CHECK-NEXT: [[R0:%.*]] = "tf.Const"()
    # CHECK-NEXT: [[R1:%.*]] = "tf.HashTableV2"()
    # CHECK-SAME: shared_name = "[[hash_table]]"
    # CHECK-NEXT: [[R2:%.*]] = "tf.LookupTableFindV2"([[R1]], [[ARG0]], [[R0]])
    # CHECK-NEXT: [[R3:%.*]] = "tf.ReadVariableOp"([[ARG1]])
    # CHECK-NEXT: [[R4:%.*]] = "tf.AddV2"([[R2]], [[R3]])
    # CHECK-NEXT: return [[R4]]
    
    
    def Test():
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/groovy-list-library/src/main/groovy/org/gradle/sample/list/LinkedList.groovy

            }
        }
    
        int size() {
            int size = 0
    
            for (Node it = head; it != null; it = it.next) {
                ++size
            }
    
            return size
        }
    
        String get(int index) {
            Node it = head
            while (index > 0 && it != null) {
                it = it.next
                index--
            }
    
            if (it == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/groovyapplication/multi/list/LinkedList.groovy.template

            }
        }
    
        int size() {
            int size = 0
    
            for (Node it = head; it != null; it = it.next) {
                ++size
            }
    
            return size
        }
    
        String get(int index) {
            Node it = head
            while (index > 0 && it != null) {
                it = it.next
                index--
            }
    
            if (it == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top