Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 129 for z0 (0.03 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_to_nhwc.mlir

            -> (tensor<?x256x56x56xf32>, tensor<256xf32>, tensor<256xf32>, tensor<256xf32>, tensor<256xf32>, tensor<*xf32>)
    
      // CHECK: %[[BATCH_NORM1:[_a-z0-9]*]], {{.*}} = "tf.FusedBatchNormV3"
      // CHECK-SAME: %[[CONV1]]
      // CHECK-SAME: data_format = "NHWC"
    
      // ------------------------------------------------------------------------ //
      // Convolution layer #2.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/options/token.go

    func (bto *BootstrapTokenOptions) AddTokenFlag(fs *pflag.FlagSet) {
    	fs.StringVar(
    		&bto.TokenStr, TokenStr, "",
    		"The token to use for establishing bidirectional trust between nodes and control-plane nodes. The format is [a-z0-9]{6}\\.[a-z0-9]{16} - e.g. abcdef.0123456789abcdef",
    	)
    }
    
    // AddTTLFlag adds the --token-ttl flag to the given flagset
    func (bto *BootstrapTokenOptions) AddTTLFlag(fs *pflag.FlagSet) {
    	bto.AddTTLFlagWithName(fs, TokenTTL)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/stateful-attribute.pbtxt

      }
    }
    versions {
      producer: 29
      min_consumer: 12
    }
    
    # Find PartitionedCall ops in main and match the callee name.
    # CHECK: func @main
    # CHECK: "tf.PartitionedCall"
    # CHECK-SAME: f = @[[FUNCTION_FOO:[a-zA-Z0-9_]*]]
    
    # Find callee and verify it has the stateful attribute set.
    # CHECK: func private @[[FUNCTION_FOO]]
    # CHECK-SAME: attributes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/isolate-placer.mlir

    // CHECK: [[CALL_RESULT_REG:%.*]], [[CALL_RESULT_REG_control:%.*]] = tf_executor.island wraps "tf.StatefulPartitionedCall"([[IDENTITY_REG]])
    // CHECK-SAME: f = @[[FUNCTION:[a-zA-Z0-9_]*]]
    
    // Match the inserted Identity op for call output.
    // CHECK: "tf.Identity"([[CALL_RESULT_REG]])
    
    // Match the function name
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. src/math/cmplx/tan.go

    		0x2b0198237e3db5d5,
    	}
    	// Use the exponent to extract the 3 appropriate uint64 digits from mPi,
    	// B ~ (z0, z1, z2), such that the product leading digit has the exponent -64.
    	// Note, exp >= 50 since x >= reduceThreshold and exp < 971 for maximum float64.
    	digit, bitshift := uint(exp+64)/64, uint(exp+64)%64
    	z0 := (mPi[digit] << bitshift) | (mPi[digit+1] >> (64 - bitshift))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  6. bin/update_deps.sh

    # shellcheck disable=SC1001
    LATEST_DISTROLESS_SHA256=$(crane digest cgr.dev/chainguard/static | awk -F\: '{print $2}')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/groovy/config/checkstyle/checkstyle.xml

            <module name="MemberName"/>
            <module name="MethodName"/>
            <module name="MethodTypeParameterName"/>
            <module name="PackageName">
                <property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$"/>
            </module>
            <module name="ParameterName"/>
            <module name="StaticVariableName"/>
            <module name="TypeName"/>
        </module>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/config/checkstyle/checkstyle.xml

            <module name="MemberName"/>
            <module name="MethodName"/>
            <module name="MethodTypeParameterName"/>
            <module name="PackageName">
                <property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$"/>
            </module>
            <module name="ParameterName"/>
            <module name="StaticVariableName"/>
            <module name="TypeName"/>
        </module>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/device_canonicalize.mlir

      func.return
    }
    
    // CHECK-NOT: tf_device.launch
    
    
    // Test empty launch with some results is folded away.
    // CHECK-LABEL: func @empty_launch
    // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<i1>, %[[ARG_1:[a-z0-9]*]]: tensor<i32>)
    func.func @empty_launch(%arg0 : tensor<i1>, %arg1 : tensor<i32>) -> (tensor<i32>, tensor<i1>) {
      %result:2 = "tf_device.launch"() ({
        tf_device.return %arg0, %arg1 : tensor<i1>, tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestHistory.java

         */
        default String getId() {
            return convertToId(getDisplayName());
        }
    
        static String convertToId(String displayName) {
            return displayName.replaceAll("[^a-zA-Z0-9]", "-");
        }
    
        /**
         * A human consumable display name for this performance test.
         */
        default String getDisplayName() {
            return getExperiment().getDisplayName();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top