Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for inputs_ (0.17 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                        assertThat(peeker.getDone(input1)).isSameInstanceAs("value1");
                        try {
                          peeker.getDone(input2Failed);
                          fail("Peeker should fail for failed inputs");
                        } catch (ExecutionException expected) {
                        }
                        try {
                          peeker.getDone(nonInput);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      TF_ASSERT_OK(MarkForCompilationPassTestHelper::MarkForCompilation(&graph));
    
      std::unordered_map<string, string> clusters = GetClusters(*graph);
    
      // TODO(b/118970344): ctrl_trigger_a has inputs with mismatching deadness so
      // it won't be clustered.  ctrl_trigger_b is okay to cluster but we don't
      // cluster it because of b/118970344.
      EXPECT_TRUE(clusters.empty());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

    // CHECK-NEXT: return
    
    //CHECK-LABEL: @serving_default
    func.func @serving_default(%arg0: tensor<?xf32> {tf.device = "/job:localhost/replica:0/task:0/device:CPU:0"}) -> tensor<3xf32> attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input:0", outputs = "PartitionedCall:0"}} {
      %cst = "tf.Const"() {device = "/job:localhost/replica:0/task:0/device:CPU:0", value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    	// repeated throughout the text, reducing maxID relative to numLMS.
    	//
    	// For short inputs, the averages may not run in our favor, but then we
    	// can often fall back to using the length-512 tmp available in the
    	// top-most call. (Also a short allocation would not be a big deal.)
    	//
    	// For pathological inputs, we fall back to allocating a new tmp of length
    	// max(maxID, numLMS/2). This level of the recursion needs maxID,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	}
    }
    
    // revise updates the assist ratio during the GC cycle to account for
    // improved estimates. This should be called whenever gcController.heapScan,
    // gcController.heapLive, or if any inputs to gcController.heapGoal are
    // updated. It is safe to call concurrently, but it may race with other
    // calls to revise.
    //
    // The result of this race is that the two assist ratio values may not line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p>It's acceptable for the underlying multimap to contain null keys and null values provided
       * that the transformer is capable of accepting null inputs. The transformed multimap might
       * contain null values if the transformer sometimes gives a null result.
       *
       * <p>The returned multimap is not thread-safe or serializable, even if the underlying multimap
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Multimaps.java

       *
       * <p>It's acceptable for the underlying multimap to contain null keys and null values provided
       * that the transformer is capable of accepting null inputs. The transformed multimap might
       * contain null values if the transformer sometimes gives a null result.
       *
       * <p>The returned multimap is not thread-safe or serializable, even if the underlying multimap
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

    }
    
    // Tests that tf.VariableShape operation is decomposed.
    
    // CHECK-LABEL: @decompose_variable_shape_i32
    func.func @decompose_variable_shape_i32(%input: tensor<!tf_type.resource<tensor<?x?x?xf32>>>) -> tensor<3xi32> {
      %0 = "tf_device.cluster"() ({
        %1 = "tf.VariableShape"(%input) : (tensor<!tf_type.resource<tensor<?x?x?xf32>>>) -> tensor<3xi32>
        // CHECK: %[[READ:.*]] = "tf.ReadVariableOp"(%arg0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK:        tf_device.return %[[CLUSTER]]#0, %[[CLUSTER]]#1
    // CHECK:      return %[[REPLICATE]]#0, %[[REPLICATE]]#3
    
    
    // Test replication with model parallelism using partitioned resource inputs.
    // The cluster will be wrapped in a `tf_device.cluster` first and then by a
    // replicate.
    // TPUPartitionedInputV2 nodes would be inside the replicate but outside the
    // cluster.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK: return [[RES]]
      func.return %0 : tensor<*xf32>
    }
    
    // CHECK-LABEL: func @l2_loss
    // CHECK-SAME: (%[[INPUT:.*]]: tensor<?x?xf32>)
    func.func @l2_loss(%arg0: tensor<?x?xf32>) -> tensor<f32> {
    
      // CHECK-DAG: %[[SQUARE:.*]] = "tf.Mul"(%[[INPUT]], %[[INPUT]]) : (tensor<?x?xf32>, tensor<?x?xf32>) -> tensor<?x?xf32>
      // CHECK-DAG: %[[REDUCE_AXES:.*]] = "tf.Const"() <{value = dense<[0, 1]> : tensor<2xi64>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
Back to top