Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,906 for while_1 (0.12 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/unranked_function_output.mlir

    // This test is to test for unranked function output from input, the output type should be compatible with input type.
    
    // CHECK: func @main(%arg0: tensor<1xf32>) -> tensor<*xf32> attributes {tf.entry_function = {inputs = "arg0", outputs = "tfl.while"}} {
    // CHECK:   %0 = "tfl.while"(%arg0) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 11 07:12:22 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/optimize_tf_control_flow_side_effect.mlir

      func.return %1 : tensor<i32>
    }
    
    // CHECK-LABEL: func @set_stateless
    func.func @set_stateless(%arg: tensor<i32>, %cond: tensor<i1>) -> (tensor<i32>, tensor<i32>) {
      // CHECK: tf.While
      // CHECK-SAME: is_stateless = true
      %0 = "tf.While"(%arg) { cond = @no_side_effect_cond, body = @no_side_effect_body, is_stateless = false} : (tensor<i32>) -> (tensor<i32>)
      // CHECK: tf.If
      // CHECK-SAME: is_stateless = true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 01:15:55 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-input-func-arg-name-collision.pbtxt

        key: "value"
        value {
          tensor {
            dtype: DT_INT32
            tensor_shape {
            }
            int_val: 0
          }
        }
      }
    }
    node {
      name: "while"
      op: "While"
      input: "while/loop_counter"
      input: "while/maximum_iterations"
      input: "input"
      attr {
        key: "T"
        value {
          list {
            type: DT_INT32
            type: DT_INT32
            type: DT_INT32
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  4. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    	if err != nil {
    		t.Fatalf("Error while calling GetTrustAnchorsByName: %v", err)
    	}
    
    	if diff := diffBundles(gotBundle, []byte(ctb1.Spec.TrustBundle)); diff != "" {
    		t.Fatalf("Got bad bundle; diff (-got +want)\n%s", diff)
    	}
    
    	gotBundle, err = ctbManager.GetTrustAnchorsByName("ctb2", false)
    	if err != nil {
    		t.Fatalf("Error while calling GetTrustAnchorsByName: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LoadingCache.java

       * {@code key} while the new value was loading then a removal notification will be sent for the
       * new value.
       *
       * <p>If the cache loader associated with this cache is known not to throw checked exceptions,
       * then prefer {@link #getUnchecked} over this method.
       *
       * @throws ExecutionException if a checked exception was thrown while loading the value. ({@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/mlir2exec/tfl_while_op.mlir

    // CHECK-NEXT: Tensor 3 tfl.while kTfLiteInt32 kTfLiteArenaRw 4 / 0.00 (null) [{{.*}})
    // CHECK-NEXT: Tensor 4 result kTfLiteFloat32 kTfLiteArenaRw 4 / 0.00 [1] [{{.*}})
    
    // Verify while was not folded away:
    // ------------------------------------
    // CHECK: Operator Builtin Code {{[0-9]*}} WHILE
    
    func.func @main() -> (tensor<1xf32>, tensor<i32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 19 17:11:31 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/guarantee_func_has_one_use.mlir

    module attributes {tf.versions = {producer = 888 : i32}} {
    // CHECK-LABEL: func @while_main
    // CHECK: %0 = "tf.While"(%arg0)
    // CHECK-SAME: body = @while_body
    // CHECK-SAME: cond = @while_cond
    // CHECK: "tf.While"(%arg1)
    // CHECK-SAME: body = @while_body_0
    // CHECK-SAME: cond = @while_cond_1
    
    // CHECK: func @while_body(%arg0: tensor<256x256xi32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 14:24:59 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/scalaapplication/multi/list/LinkedList.scala.template

            var it: Node = null
    
            it = head
            while (it != null && it.next != null) {
                it = it.next
            }
    
            it
        }
    
        def remove(element: String): Boolean = {
            var result = false
            var previousIt: Node = null
            var it: Node = head
            while (!result && it != null) {
                if (0 == element.compareTo(it.data)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ObjectHolder.java

         */
        T get();
    
        /**
         * Sets the value for this cache. An exclusive lock is held while setting the value.
         */
        void set(T newValue);
    
        /**
         * Replaces the value for this cache.
         *
         * An exclusive lock is held while the update action is executing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/testx.c

    void lockOSThreadC(void) {
    	lockOSThreadCallback();
    }
    
    void issue7978c(uint32_t *sync) {
    	while(__atomic_load_n(sync, __ATOMIC_SEQ_CST) != 0)
    		;
    	__atomic_add_fetch(sync, 1, __ATOMIC_SEQ_CST);
    	while(__atomic_load_n(sync, __ATOMIC_SEQ_CST) != 2)
    		;
    	issue7978cb();
    	__atomic_add_fetch(sync, 1, __ATOMIC_SEQ_CST);
    	while(__atomic_load_n(sync, __ATOMIC_SEQ_CST) != 6)
    		;
    }
    
    void f7665(void) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 582 bytes
    - Viewed (0)
Back to top