Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for composed (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        )
    
        # Make sure that the desired input key and output key is present.
        self.assertIn('input_vocabs', inputs.keys())
        self.assertIn('lookup', outputs.keys())
    
        # Representative dataset is composed of a set of vocabs for table lookup.
        repr_ds = [
            {'input_vocabs': np.array([b'hello', b'model', b'quantization'])}
            for _ in range(4)
        ]
    
        signature_def_keys = [signature_def_key]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        ListenableFuture<List<String>> compound = successfulAsList(future1, future2, future3);
        compound.addListener(listener, directExecutor());
    
        // First is cancelled, second fails, third succeeds
        assertFalse(compound.isDone());
        future1.cancel(true);
        assertFalse(compound.isDone());
        future2.setException(new Throwable("failed2"));
        assertFalse(compound.isDone());
        listener.expectCall();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        ListenableFuture<List<String>> compound = successfulAsList(future1, future2, future3);
        compound.addListener(listener, directExecutor());
    
        // First is cancelled, second fails, third succeeds
        assertFalse(compound.isDone());
        future1.cancel(true);
        assertFalse(compound.isDone());
        future2.setException(new Throwable("failed2"));
        assertFalse(compound.isDone());
        listener.expectCall();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    An expression or type is compared to the "cases"
    inside the "switch" to determine which branch
    to execute.
    </p>
    
    <pre class="ebnf">
    SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
    </pre>
    
    <p>
    There are two forms: expression switches and type switches.
    In an expression switch, the cases contain expressions that are compared
    against the value of the switch expression.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // ============================================================================
    // The following functions tests example quantization patterns outputted from
    // JAX Quantizer. JAX Quantizer should output integer types, which are
    // composed into `UniformQuantized{|PerAxis}Type` via
    // `compose_uniform_quantized_type_pass.cc`.
    // ============================================================================
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // is compared exactly against the comment (see examples below). If the last
    // comment begins with "Unordered output:" then the output is compared to the
    // comment, however the order of the lines is ignored. An example with no such
    // comment is compiled but not executed. An example with no text after
    // "Output:" is compiled, executed, and expected to produce no output.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                The directory where compiled application classes are placed.
                The default value is {@code target/classes}.
              </description>
              <type>String</type>
            </field>
            <field>
              <name>testOutputDirectory</name>
              <version>4.0.0+</version>
              <description>
                The directory where compiled test classes are placed.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation_test.go

    				Validations: []admissionregistration.Validation{{
    					Expression: "object.x < 50",
    				}},
    			},
    		},
    		expectedError: "",
    	},
    		{
    			name: "expressions that are not changed must be compiled using the StoredExpression environment",
    			oldconfig: validatingAdmissionPolicyWithExpressions(
    				[]admissionregistration.MatchCondition{
    					{
    						Name:       "checkEnvironmentMode",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

           when the initial value of the corresponding resource is read, and the
           resource is written later.
    
        Assumption of this pass:
         . Compound resource operations have already been decomposed.
         . Dead functions have already been removed, as resource arguments in dead
           functions can cause the pass to fail.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

          Predicate<? super K> keyPredicate) {
        return compose(keyPredicate, Maps.<K>keyFunction());
      }
    
      static <V extends @Nullable Object> Predicate<Entry<?, V>> valuePredicateOnEntries(
          Predicate<? super V> valuePredicate) {
        return compose(valuePredicate, Maps.<V>valueFunction());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top