Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Macro (0.05 sec)

  1. tensorflow/compiler/aot/tfcompile.bzl

    """Build macro that compiles a TensorFlow graph into a cc_library.
    
    To use from your BUILD file, add the following line to load the macro:
    
    load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
    
    Then call the macro like this:
    
    tf_library(
        name = "test_graph_tfmatmul",
        config = "test_graph_tfmatmul.config.pbtxt",
        cpp_class = "MatMulComp",
        graph = ":test_graph_tfmatmul.pb",
    )
    """
    
    load(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/accesslog.go

    	// Logging them by default on the console may be an issue as the base64 encoded string is bound to be a big one.
    	// But end users can certainly configure it on their own via the meshConfig using the %FILTER_STATE% macro.
    	envoyWasmStateToLog = []string{"wasm.upstream_peer", "wasm.upstream_peer_id", "wasm.downstream_peer", "wasm.downstream_peer_id"}
    
    	// accessLogBuilder is used to set accessLog to filters
    	accessLogBuilder = newAccessLogBuilder()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging.go

    	// Logging them by default on the console may be an issue as the base64 encoded string is bound to be a big one.
    	// But end users can certainly configure it on their own via the meshConfig using the %FILTER_STATE% macro.
    	envoyWasmStateToLog = []string{"wasm.upstream_peer", "wasm.upstream_peer_id", "wasm.downstream_peer", "wasm.downstream_peer_id"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    }
    
    func (e *cmdError) ImportPath() string {
    	return e.importPath
    }
    
    var cgoLine = lazyregexp.New(`\[[^\[\]]+\.(cgo1|cover)\.go:[0-9]+(:[0-9]+)?\]`)
    var cgoTypeSigRe = lazyregexp.New(`\b_C2?(type|func|var|macro)_\B`)
    
    // run runs the command given by cmdline in the directory dir.
    // If the command fails, run prints information about the failure
    // and returns a non-nil error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. tensorflow/c/kernels.cc

    void AddTypeConstraint(TF_KernelBuilder* kernel_builder, const char* attr_name,
                           const DataType dtype, TF_Status* status) {
      // This needs to be under tensorflow:: namespace so that
      // TF_CALL_ALL_TYPES macro can find tensorflow::string as string.
      switch (dtype) {
        TF_CALL_ALL_TYPES(CASE);
        TF_CALL_QUANTIZED_TYPES(CASE);
        TF_CALL_quint16(CASE);
        TF_CALL_qint16(CASE);
        default:
          status->status =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    				// been bypassed. int-or-string is typed as dynamic and so bypasses compiler type checking.
    				errs = append(errs, field.Invalid(fldPath, sts.Type, fmt.Sprintf("'%v': call arguments did not match a supported operator, function or macro signature for rule: %v", err, ruleErrorString(rule))))
    			} else if strings.HasPrefix(err.Error(), "operation cancelled: actual cost limit exceeded") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  7. src/runtime/asm_arm64.s

    	ADD	$288, RSP, RSP // Add 16 more bytes, see saveSigContext
    	MOVD	-16(RSP), R30 // restore old lr
    	JMP	(R27)
    
    // runtime.debugCallCheck assumes that functions defined with the
    // DEBUG_CALL_FN macro are safe points to inject calls.
    #define DEBUG_CALL_FN(NAME,MAXSIZE)		\
    TEXT NAME(SB),WRAPPER,$MAXSIZE-0;		\
    	NO_LOCAL_POINTERS;		\
    	MOVD	$0, R20;		\
    	BREAK;		\
    	MOVD	$1, R20;		\
    	BREAK;		\
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/test.go

            {
                int x;
            } y[16];
    } z;
    
    // issue 6612
    // Test new scheme for deciding whether C.name is an expression, type, constant.
    // Clang silences some warnings when the name is a #defined macro, so test those too
    // (even though we now use errors exclusively, not warnings).
    
    void myfunc(void) {}
    int myvar = 5;
    const char *mytext = "abcdef";
    typedef int mytype;
    enum {
    	myenum = 1234,
    };
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top