Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,148 for Constant2 (0.21 sec)

  1. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

        private void method() {
            for ($constantType i = Constant1.CONSTANT1 $addition; i < Constant2.CONSTANT2 $addition; i += Constant3.CONSTANT3 $addition) {
            }
            $constantType value = Constant3.CONSTANT3 $addition;
            switch((int) value) {
                case (int) (Constant4.CONSTANT4 $addition):
                default:
                    value = (int) (Constant5.CONSTANT5 $addition);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def.mlir

        %cst = arith.constant dense<0.000000e+00> : tensor<5xf32>
        %cst_0 = arith.constant dense<1.0> : tensor<5x384xf32>
        %cst_1 = arith.constant dense<1.0> : tensor<5x384xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:55:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. android/guava-testlib/test/com/google/common/testing/FreshValueGeneratorTest.java

        assertEquals(value, generator.generateFresh(type));
      }
    
      private enum EmptyEnum {}
    
      private enum OneConstantEnum {
        CONSTANT1
      }
    
      private enum TwoConstantEnum {
        CONSTANT1,
        CONSTANT2
      }
    
      private static void assertCanGenerateOnly(TypeToken<?> type, Object expected) {
        FreshValueGenerator generator = new FreshValueGenerator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 17.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.mlir

      // CHECK: %[[CONSTANT_0:.*]] = stablehlo.constant dense<0.134728625> : tensor<1x3xf32>
      // CHECK: %[[CONSTANT_1:.*]] = stablehlo.constant dense<-1.280000e+02> : tensor<1x1024xf32>
      // CHECK: %[[CONSTANT_2:.*]] = stablehlo.constant dense<0.003921567> : tensor<1x1024xf32>
      // CHECK: %[[DIVIDE:.*]] = stablehlo.divide %arg1, %[[CONSTANT_2]]
      // CHECK: %[[ADD:.*]] = stablehlo.add %[[DIVIDE]], %[[CONSTANT_1]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/testing/FreshValueGeneratorTest.java

        assertEquals(value, generator.generateFresh(type));
      }
    
      private enum EmptyEnum {}
    
      private enum OneConstantEnum {
        CONSTANT1
      }
    
      private enum TwoConstantEnum {
        CONSTANT1,
        CONSTANT2
      }
    
      private static void assertCanGenerateOnly(TypeToken<?> type, Object expected) {
        FreshValueGenerator generator = new FreshValueGenerator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 18.4K bytes
    - Viewed (0)
  6. cni/pkg/constants/constants.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package constants
    
    // Command line arguments
    const (
    	// Install
    	MountedCNINetDir     = "mounted-cni-net-dir"
    	CNINetDir            = "cni-net-dir"
    	CNIConfName          = "cni-conf-name"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/sccp.go

    // and then propagates constant facts only along reachable control flow paths.
    // Since some basic blocks are not visited yet, corresponding inputs of phi become
    // Top, we use the meet(phi) to compute its lattice.
    //
    // 	  Top ∩ any = any
    // 	  Bottom ∩ any = Bottom
    // 	  ConstantAConstantA = ConstantA
    // 	  ConstantAConstantB = Bottom
    //
    // Each lattice value is lowered most twice(Top to Constant, Constant to Bottom)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/revived_types/constant.h

    class Constant : public TensorHandleConvertible {
     public:
      static Status Create(ImmediateExecutionContext* ctx,
                           AbstractTensorInterface* tensor,
                           std::unique_ptr<Constant>* output);
    
      // RevivedConstant is movable, but not copyable.
      Constant(Constant&& other) = default;
      Constant& operator=(Constant&& other) = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. pkg/config/constants/constants.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package constants
    
    const (
    	// UnspecifiedIP constant for empty IP address
    	UnspecifiedIP = "0.0.0.0"
    	// UnspecifiedIPv6 constant for empty IPv6 address
    	UnspecifiedIPv6 = "::"
    
    	// PilotWellKnownDNSCertPath is the path location for Pilot dns serving cert, often used with custom CA integrations
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/revived_types/constant.cc

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    
    Constant::Constant(ImmediateTensorHandlePtr handle)
        : TensorHandleConvertible(std::move(handle)) {}
    
    Status Constant::Create(ImmediateExecutionContext* ctx,
                            AbstractTensorInterface* tensor,
                            std::unique_ptr<Constant>* output) {
      ImmediateExecutionTensorHandle* handle = ctx->CreateLocalHandle(tensor);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 23 19:44:24 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top