Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for Builtin (0.17 sec)

  1. src/cmd/internal/goobj/builtin.go

    package goobj
    
    import "internal/buildcfg"
    
    // Builtin (compiler-generated) function references appear
    // frequently. We assign special indices for them, so they
    // don't need to be referenced by name.
    
    // NBuiltin returns the number of listed builtin
    // symbols.
    func NBuiltin() int {
    	return len(builtins)
    }
    
    // BuiltinName returns the name and ABI of the i-th
    // builtin symbol.
    func BuiltinName(i int) (string, int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 22 13:50:24 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. releasenotes/notes/otel-builtin-labels.yaml

    zirain <******@****.***> 1718030161 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 151 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/colocate_tpu_copy_with_dynamic_shape.mlir

    // CHECK-LABEL test_tpu_execute
    func.func @test_tpu_execute(%arg0: tensor<!tf_type.string>) {
         %0 = builtin.unrealized_conversion_cast to tensor<2048xi32>
         %1 = builtin.unrealized_conversion_cast to tensor<2048xi32>
         %2 = builtin.unrealized_conversion_cast to tensor<i32>
         %3 = builtin.unrealized_conversion_cast to tensor<i32>
         // CHECK: TPUCopyWithDynamicShape{{.*}}device = "foobar"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 00:30:27 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/credentials/resource_test.go

    	tests := []struct {
    		name      string
    		namespace string
    		want      string
    	}{
    		{"foo", "ns", "kubernetes-gateway://ns/foo"},
    		{"builtin://", "anything", "builtin://"},
    		{"builtin://extra", "anything", "builtin://"},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := ToKubernetesGatewayResource(tt.namespace, tt.name); got != tt.want {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_utils.h

    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    
    namespace tflite {
    
    // The following methods are introduced to resolve op builtin code shortage
    // problem. The new builtin operator will be assigned to the extended builtin
    // code field in the flatbuffer schema. Those methods helps to hide builtin code
    // details.
    BuiltinOperator GetBuiltinCode(const OperatorCode *op_code);
    
    BuiltinOperator GetBuiltinCode(const OperatorCodeT *op_code);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/disable_builtin.mlir

    // RUN: not flatbuffer_translate -mlir-to-tflite-flatbuffer -emit-builtin-tflite-ops=false %s 2>&1 | FileCheck %s
    
    // CHECK: 'tfl.add' op is a TFLite builtin op but builtin emission is not enabled
    
    func.func @main(tensor<3x2xi32>) -> tensor<3x2xi32> {
    ^bb0(%arg0: tensor<3x2xi32>):
      %0 = "arith.constant"() {name = "Const2", value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:31:32 UTC 2022
    - 547 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/install_goroot_targets.txt

    # (Though we can't try installing it without modifying goroot).
    env GODEBUG=installgoroot=all
    go list -f '{{.Target}}' fmt
    stdout fmt\.a
    
    # However, the fake packages "builtin" and "unsafe" do not.
    go list -f '{{.Target}}' builtin unsafe
    ! stdout .
    go install builtin unsafe  # Should succeed as no-ops.
    
    # With CGO_ENABLED=0, packages that would have
    # an install target with cgo on no longer do.
    env GODEBUG=
    env CGO_ENABLED=0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 22:43:41 UTC 2022
    - 747 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_utils.cc

    // The actual builtin operator code value will exist in the
    // `deprecated_builtin_code` field. At the same time, it implies that
    // `deprecated_builtin_code` >= `builtin_code` and the maximum value of the two
    // fields will be same with `deprecated_builtin_code'.
    //
    // - Supporting builtin operator codes beyonds 127
    //
    // New builtin operators, whose operator code is larger than 127, can not be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_dot.txt

    # prefixless treatment of GOROOT itself.
    cd $WORK/othergoroot/src
    ! go list .
    stderr '^no Go files in '$WORK'[/\\]othergoroot[/\\]src$'
    
    go list ./builtin
    stdout '^std/builtin$'  # Only the "std" in actual $GOROOT is special, and only its "builtin" is special.
    
    ! go list ./bytes
    ! stderr 'cannot find module providing package'
    stderr '^no Go files in '$WORK'[/\\]othergoroot[/\\]src[/\\]bytes$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 22:30:03 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/serialized-mlir-module-str-attr-invalid.mlir

    // RUN: not tf-mlir-translate -mlir-tf-str-attr-to-mlir %s 2>&1 | FileCheck %s
    
    "builtin.totally @invalid MLIR module {here} <-"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 01 20:38:29 UTC 2021
    - 220 bytes
    - Viewed (0)
Back to top