Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 297 for Builtin (0.22 sec)

  1. src/go/types/sizeof_test.go

    		{TypeParam{}, 28, 48},
    		{term{}, 12, 24},
    
    		// Objects
    		{PkgName{}, 48, 88},
    		{Const{}, 48, 88},
    		{TypeName{}, 40, 72},
    		{Var{}, 48, 88},
    		{Func{}, 48, 88},
    		{Label{}, 44, 80},
    		{Builtin{}, 44, 80},
    		{Nil{}, 40, 72},
    
    		// Misc
    		{Scope{}, 44, 88},
    		{Package{}, 44, 88},
    		{_TypeSet{}, 28, 56},
    	}
    	for _, test := range tests {
    		got := reflect.TypeOf(test.val).Size()
    		want := test._32bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 06 13:09:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      // represented with -1.
      shape_signature:[int]; // Optional.
    }
    
    // A list of builtin operators. Builtin operators are slightly faster than custom
    // ones, but not by much. Moreover, while custom operators accept an opaque
    // object containing configuration parameters, builtins have a predetermined
    // set of acceptable options.
    // LINT.IfChange
    enum BuiltinOperator : int32 {
      ADD = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/appends/appends.go

    	nodeFilter := []ast.Node{
    		(*ast.CallExpr)(nil),
    	}
    	inspect.Preorder(nodeFilter, func(n ast.Node) {
    		call := n.(*ast.CallExpr)
    		b, ok := typeutil.Callee(pass.TypesInfo, call).(*types.Builtin)
    		if ok && b.Name() == "append" && len(call.Args) == 1 {
    			pass.ReportRangef(call, "append with no values")
    		}
    	})
    
    	return nil, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_conversion_utils.h

    int8_t ConvertBuiltinCodeToDeprecatedBuiltinCode(
        const BuiltinOperator builtin_code);
    
    // The following methods are for backward compatibility for the early version
    // three, which does not have an extended builtin code.
    flatbuffers::Offset<OperatorCode> CreateOperatorCode(
        flatbuffers::FlatBufferBuilder &_fbb,
        BuiltinOperator builtin_code = BuiltinOperator_ADD,
        flatbuffers::Offset<flatbuffers::String> custom_code = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/go/types/object.go

    	return &Label{object{pos: pos, pkg: pkg, name: name, typ: Typ[Invalid], color_: black}, false}
    }
    
    // A Builtin represents a built-in function.
    // Builtins don't have a valid type.
    type Builtin struct {
    	object
    	id builtinId
    }
    
    func newBuiltin(id builtinId) *Builtin {
    	return &Builtin{object{name: predeclaredFuncs[id].name, typ: Typ[Invalid], color_: black}, id}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/batch_function_fallback_resource_variable_as_captured_tensor.mlir

    // RUN: tf-tfrt-opt -pass-pipeline='builtin.module(tf-executor-to-tfrt-pipeline{target-tpurt=true})' %s | FileCheck %s
    
    module attributes {tf_saved_model.semantics}  {
      // CHECK-LABEL: func @main
      func.func @main_func() -> (tensor<*xf32> {tf_saved_model.index_path = ["a"]}) attributes {tf_saved_model.exported_names = ["main_func"]} {
        %0 = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/internal/types/errors/codes_test.go

    		"pointer",
    		"receiver",
    		"signature",
    		"statement",
    		"variable",
    	}
    	forbiddenInComment := []string{
    		// lhs and rhs should be spelled-out.
    		"lhs", "rhs",
    		// builtin should be hyphenated.
    		"builtin",
    		// Use dot-dot-dot.
    		"ellipsis",
    	}
    	nameHist := make(map[int]int)
    	longestName := ""
    	maxValue := 0
    
    	walkCodes(t, func(name string, value int, spec *ast.ValueSpec) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:41:45 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

        color: #f08d49;
    }
    
    .token.property,
    .token.class-name,
    .token.constant,
    .token.symbol {
        color: #f8c555;
    }
    
    .token.selector,
    .token.important,
    .token.atrule,
    .token.keyword,
    .token.builtin {
        color: #cc99cd;
    }
    
    .token.string,
    .token.char,
    .token.attr-value,
    .token.regex,
    .token.variable {
        color: #7ec699;
    }
    
    .token.operator,
    .token.entity,
    .token.url {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/flex_exclusively.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -emit-select-tf-ops=true -emit-builtin-tflite-ops=false -o - | flatbuffer_to_string - | FileCheck %s
    
    func.func @main(%arg0: tensor<3x2xf32>) -> tensor<3x2xf32> {
    // CHECK:  {
    // CHECK-NEXT:    version: 3,
    // CHECK-NEXT:    operator_codes: [ {
    // CHECK-NEXT:      deprecated_builtin_code: 32,
    // CHECK-NEXT:      custom_code: "FlexAddV2"
    // CHECK-NEXT:      builtin_code: CUSTOM
    // CHECK-NEXT:    } ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/utils/dialect_detection_utils.cc

    namespace tf2xla {
    namespace internal {
    
    bool IsInBridgeAcceptableDialects(mlir::Operation* op) {
      const std::set<std::string> kBuiltinNamespaces = {"func", "return",
                                                        "builtin"};
      const std::set<std::string> kBridgeAcceptableNamespaces = {"tf", "tf_device"};
      bool isInDefaulNamespaces =
          kBuiltinNamespaces.find(op->getDialect()->getNamespace().str()) !=
          kBuiltinNamespaces.end();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 20:33:37 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top