Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,331 for pos3 (0.04 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training-16bits.mlir

    // RUN: tf-opt %s -tfl-prepare-quantize="quantize-signed=true post-training-quantize=true activation-number-of-bits=16" -cse | FileCheck %s
    
    // CHECK-LABEL: QuantizeUnidirectionalLstmFullPerTensor
    func.func @QuantizeUnidirectionalLstmFullPerTensor(%arg0: tensor<1x2x3xf32>) -> (tensor<1x2x3xf32>) {
      %input = "quantfork.stats"(%arg0) {layerStats = dense<[0.0, 1.0]> : tensor<2xf32>} : (tensor<1x2x3xf32>) -> tensor<1x2x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_body/test_tutorial001.py

    def test_body_float(client: TestClient):
        response = client.post("/items/", json={"name": "Foo", "price": 50.5})
        assert response.status_code == 200
        assert response.json() == {
            "name": "Foo",
            "price": 50.5,
            "description": None,
            "tax": None,
        }
    
    
    def test_post_with_str_float(client: TestClient):
        response = client.post("/items/", json={"name": "Foo", "price": "50.5"})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_body/test_tutorial001_py310.py

    def test_body_float(client: TestClient):
        response = client.post("/items/", json={"name": "Foo", "price": 50.5})
        assert response.status_code == 200
        assert response.json() == {
            "name": "Foo",
            "price": 50.5,
            "description": None,
            "tax": None,
        }
    
    
    @needs_py310
    def test_post_with_str_float(client: TestClient):
        response = client.post("/items/", json={"name": "Foo", "price": "50.5"})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. cmd/post-policy-fan-out.go

    Harshavardhana <******@****.***> 1705561397 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/stmt.go

    		// the wrapper function.
    
    		stmtPos := base.Pos
    		callPos := base.Pos
    
    		as := ir.NewAssignListStmt(callPos, ir.OAS2, make([]ir.Node, len(argps)), make([]ir.Node, len(argps)))
    		for i, argp := range argps {
    			arg := *argp
    
    			pos := callPos
    			if ir.HasUniquePos(arg) {
    				pos = arg.Pos()
    			}
    
    			// tmp := arg
    			tmp := TempAt(pos, ir.CurFunc, arg.Type())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

            return asJson(
                    new ApiResult.ApiUpdateResponse().id(String.valueOf(entity.getId())).created(true).status(ApiResult.Status.OK).result());
        }
    
        // POST /api/admin/dict/kuromoji/setting/{dictId}
        @Execute
        public JsonResponse<ApiResult> post$setting(final String dictId, final EditBody body) {
            body.dictId = dictId;
            validateApi(body, messages -> {});
            body.crudMode = CrudMode.EDIT;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/go/parser/resolver.go

    			i++
    		} else if debugResolve {
    			pos := ident.Obj.Decl.(interface{ Pos() token.Pos }).Pos()
    			r.trace("resolved %s@%v to package object %v", ident.Name, ident.Pos(), pos)
    		}
    	}
    	file.Scope = r.pkgScope
    	file.Unresolved = r.unresolved[0:i]
    }
    
    const maxScopeDepth int = 1e3
    
    type resolver struct {
    	handle  *token.File
    	declErr func(token.Pos, string)
    
    	// Ordinary identifier scopes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/numberlines.go

    			} else {
    				v.Pos = v.Pos.WithDefaultStmt()
    			}
    		}
    		if b.Pos.IsStmt() != src.PosNotStmt && !b.Pos.SameFileAndLine(firstPos) {
    			if f.pass.debug > 0 {
    				fmt.Printf("Mark stmt end of block differs %s %s %s prev pos = %s\n", f.Name, b, flc(b.Pos), flc(firstPos))
    			}
    			b.Pos = b.Pos.WithIsStmt()
    			firstPos = b.Pos
    		}
    		endlines[b.ID] = firstPos
    	}
    	if f.pass.stats&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: p.lit == "\n"}
    		p.next()
    	case token.RBRACE:
    		// a semicolon may be omitted before a closing "}"
    		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: true}
    	default:
    		// no statement found
    		pos := p.pos
    		p.errorExpected(pos, "statement")
    		p.advance(stmtStart)
    		s = &ast.BadStmt{From: pos, To: p.pos}
    	}
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. src/go/types/stmt.go

    			}
    		}
    		check.simpleStmt(s.Post)
    		// spec: "The init statement may be a short variable
    		// declaration, but the post statement must not."
    		if s, _ := s.Post.(*ast.AssignStmt); s != nil && s.Tok == token.DEFINE {
    			check.softErrorf(s, InvalidPostDecl, "cannot declare in post statement")
    			// Don't call useLHS here because we want to use the lhs in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top