Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for func4 (0.19 sec)

  1. fastapi/routing.py

        ) -> Callable[[DecoratedCallable], DecoratedCallable]:
            def decorator(func: DecoratedCallable) -> DecoratedCallable:
                self.add_route(
                    path,
                    func,
                    methods=methods,
                    name=name,
                    include_in_schema=include_in_schema,
                )
                return func
    
            return decorator
    
        def add_api_route(
            self,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        entry_func = fn;
      }
    
      // We should have at least one entry function.
      if (entry_func_count == 0) return false;
    
      if (entry_func_count == 1) {
        // Update the entry func to main when the entry func is only & one.
        entry_func.setName(StringAttr::get(module.getContext(), "main"));
      }
      return true;
    }
    
    std::optional<std::string> Translator::Translate(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    #include "absl/log/check.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/Support/Debug.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Quant/QuantOps.h"  // from @llvm-project  // NOLINT: Required to register quantization dialect.
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    hashADTailFinish:
    	ADDQ t0, acc0; ADCQ t1, acc1; ADCQ $1, acc2
    	polyMul
    
    	// Finished AD
    hashADDone:
    	RET
    
    // ----------------------------------------------------------------------------
    // func chacha20Poly1305Open(dst, key, src, ad []byte) bool
    TEXT ·chacha20Poly1305Open(SB), 0, $288-97
    	// For aligned stack access
    	MOVQ SP, BP
    	ADDQ $32, BP
    	ANDQ $-32, BP
    	MOVQ dst+0(FP), oup
    	MOVQ key+24(FP), keyp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    #include "llvm/ADT/TypeSwitch.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "llvm/Support/Threading.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top