Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for constCnt (0.4 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

            server.register("multiply", _remote_multiply) ```
    
        *   Example usage to create client: `python client =
            tf.distribute.experimental.rpc.Client.create("grpc", address) a =
            tf.constant(2, dtype=tf.int32) b = tf.constant(3, dtype=tf.int32)
            result = client.multiply(a, b)`
    
    *   `tf.lite`:
    
        *   Add experimental API `experimental_from_jax` to support conversion from
    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. src/testdata/Isaac.Newton-Opticks.txt

    But farther; by the 24th Observation it appears, that there is a
    constant relation between Colours and Refrangibility; the most
    refrangible Rays being violet, the least refrangible red, and those of
    intermediate Colours having proportionably intermediate degrees of
    Refrangibility. And by the 13th, 14th, and 15th Observations, compared
    with the 4th or 18th there appears to be the same constant relation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.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. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"PlusBuildLines", Func, 16},
    		{"SyntaxError", Type, 16},
    		{"SyntaxError.Err", Field, 16},
    		{"SyntaxError.Offset", Field, 16},
    		{"TagExpr", Type, 16},
    		{"TagExpr.Tag", Field, 16},
    	},
    	"go/constant": {
    		{"(Kind).String", Method, 18},
    		{"BinaryOp", Func, 5},
    		{"BitLen", Func, 5},
    		{"Bool", Const, 5},
    		{"BoolVal", Func, 5},
    		{"Bytes", Func, 5},
    		{"Compare", Func, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

                tuple_value {
                }
              }
            }
          }
          dependencies {
            node_id: 5
            local_name: "capture_0"
          }
        }
        nodes {
          constant {
            operation: "Const"
          }
          registered_name: "tf.TrackableConstant"
        }
        concrete_functions {
          key: "__inference_<lambda>_18"
          value {
            bound_inputs: 5
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  7. 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