Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 318 for Builtin (0.1 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.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 : byte {
      ADD = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. test/print.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test internal print routines that are generated
    // by the print builtin.  This test is not exhaustive,
    // we're just checking that the formatting is correct.
    
    package main
    
    func main() {
    	println((interface{})(nil)) // printeface
    	println((interface {        // printiface
    		f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeoutInterceptor.groovy

    import org.spockframework.runtime.SpockTimeoutError
    import org.spockframework.runtime.extension.IMethodInvocation
    import org.spockframework.runtime.extension.MethodInvocation
    import org.spockframework.runtime.extension.builtin.TimeoutInterceptor
    import org.spockframework.runtime.model.MethodInfo
    
    import java.util.concurrent.TimeUnit
    
    @CompileStatic
    class IntegrationTestTimeoutInterceptor extends TimeoutInterceptor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (1)
Back to top