Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Tconstants (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    For example:
    
    ```python
    c = tf.constant([[1,2,3,4], [-1,-2,-3,-4], [5,6,7,8]])
    
    # Select two rows, one segment.
    tf.sparse_segment_sum(c, tf.constant([0, 1]), tf.constant([0, 0]))
    # => [[0 0 0 0]]
    
    # Select two rows, two segment.
    tf.sparse_segment_sum(c, tf.constant([0, 1]), tf.constant([0, 1]))
    # => [[ 1  2  3  4]
    #     [-1 -2 -3 -4]]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. RELEASE.md

            `tf.train.confusion_matrix`.
        *   Add `tf.dtypes.` endpoint for every constant in dtypes.py. Moving
            endpoints in versions.py to corresponding endpoints in `tf.sysconfig.`
            and `tf.version.`. Moving all constants under `tf.saved_model`
            submodules to `tf.saved_model` module. New endpoints are added in V1 and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.tasks.compile.incremental.compilerapi.constants.ConstantToDependentsMapping> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ConstantToDependentsMapping.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  4. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2107          ; mapped                 ; 025B          # 1.1  EULER CONSTANT
    2108          ; valid                  ;      ; NV8    # 1.1  SCRUPLE
    2109          ; mapped                 ; 00B0 0066     # 1.1  DEGREE FAHRENHEIT
    210A          ; mapped                 ; 0067          # 1.1  SCRIPT SMALL G
    210B..210E    ; mapped                 ; 0068          # 1.1  SCRIPT CAPITAL H..PLANCK CONSTANT
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                      Implementations should prefer to express Gateway conditions
                      using the `GatewayConditionType` and `GatewayConditionReason`
                      constants so that operators and tools can converge on a common
                      vocabulary to describe Gateway state.
    
    
                      Known condition types are:
    
    
                      * "Accepted"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/arithConst_test.go

    	test_int8{fn: xor_127_int8, fnname: "xor_127_int8", in: 127, want: 0},
    	test_int8{fn: xor_int8_127, fnname: "xor_int8_127", in: 127, want: 0}}
    
    // TestArithmeticConst tests results for arithmetic operations against constants.
    func TestArithmeticConst(t *testing.T) {
    	for _, test := range tests_uint64 {
    		if got := test.fn(test.in); got != test.want {
    			t.Errorf("%s(%d) = %d, want %d\n", test.fnname, test.in, got, test.want)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 633.8K bytes
    - Viewed (0)
Back to top