Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for getInf (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                               static_cast<int>(delta));
        } else {
          num_elements = GetLengthOfRange(start_attr.getInt(), limit_attr.getInt(),
                                          delta_attr.getInt());
        }
        return BuildConstRangeTensor(elem_type, num_elements, start_attr,
                                     delta_attr);
      } else if (elem_type.isa<FloatType>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        inferredReturnTypes.assign({result_type});
        return success();
      }
    
      auto stride_h = op.getStrideHAttr().getInt();
      auto stride_w = op.getStrideWAttr().getInt();
      auto dilation_h = op.getDilationHFactorAttr().getInt();
      auto dilation_w = op.getDilationWFactorAttr().getInt();
    
      // We don't have EXPLICIT PADDING in TfLite.
      auto paddings = op.getPadding();
      tensorflow::Padding padding;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        }
    
        for (auto i = 0; i < window_strides.size(); ++i) {
          window_strides_vec.push_back(
              window_strides.getValues<IntegerAttr>()[i].getInt());
        }
    
        for (auto i = 0; i < base_dilations.size(); ++i) {
          base_dilations_vec.push_back(
              base_dilations.getValues<IntegerAttr>()[i].getInt());
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		// for debugging the compiler, they are not settable using 'go env -w',
    		// and so here we use os.Getenv, not cfg.Getenv.
    		magic := []string{
    			"GOCLOBBERDEADHASH",
    			"GOSSAFUNC",
    			"GOSSADIR",
    			"GOCOMPILEDEBUG",
    		}
    		for _, env := range magic {
    			if x := os.Getenv(env); x != "" {
    				fmt.Fprintf(h, "magic %s=%s\n", env, x)
    			}
    		}
    
    	case "gccgo":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        // Match Add
        mlir::TFL::AddOp add_op =
            dyn_cast_or_null<TFL::AddOp>(strided_slice_op.getEnd().getDefiningOp());
        mlir::TFL::SubOp sub_op =
            dyn_cast_or_null<TFL::SubOp>(strided_slice_op.getEnd().getDefiningOp());
        if (!(add_op || sub_op)) {
          return failure();
        }
    
        // Check that add rhs is constant.
        DenseElementsAttr added_value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    		t.Run(tt.sni, func(t *testing.T) {
    			g := NewWithT(t)
    
    			c := xdstest.ExtractCluster("outbound|8080|foobar|foo.example.org", buildSniTestClustersForSidecar(t, tt.sni))
    			g.Expect(getTLSContext(t, c).GetSni()).To(Equal(tt.expected))
    		})
    	}
    }
    
    func TestBuildClustersWithMutualTlsAndNodeMetadataCertfileOverrides(t *testing.T) {
    	expectedClientKeyPath := "/clientKeyFromNodeMetadata.pem"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.ActionConfiguration.getParams()> does not have raw return type assignable to org.gradle.api.provider.Property in (ActionConfiguration.java:0)
    Method <org.gradle.api.AntBuilder.getAnt()> does not have raw return type assignable to org.gradle.api.provider.Provider in (AntBuilder.java:0)
    Method <org.gradle.api.AntBuilder.getLifecycleLogLevel()> does not have raw return type assignable to org.gradle.api.provider.Property in (AntBuilder.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    		}
    	}()
    
    	return nil
    }
    
    func (p *ReplicationPool) initialized() bool {
    	return !(p == nil || p.objLayer == nil)
    }
    
    // getMRF returns MRF entries for this node.
    func (p *ReplicationPool) getMRF(ctx context.Context, bucket string) (ch <-chan madmin.ReplicationMRF, err error) {
    	mrfRec, err := p.loadMRF()
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    //	$ go tool pprof http.test http.prof
    //	(pprof) web
    func BenchmarkServer(b *testing.B) {
    	b.ReportAllocs()
    	// Child process mode;
    	if url := os.Getenv("TEST_BENCH_SERVER_URL"); url != "" {
    		n, err := strconv.Atoi(os.Getenv("TEST_BENCH_CLIENT_N"))
    		if err != nil {
    			panic(err)
    		}
    		for i := 0; i < n; i++ {
    			res, err := Get(url)
    			if err != nil {
    				log.Panicf("Get: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //===----------------------------------------------------------------------===//
    
    LogicalResult ConcatOffsetOp::verify() {
      ConcatOffsetOp op = *this;
      if (op.getN() < 2)
        return op.emitOpError() << "requires N to be at least 2, got " << op.getN();
    
      if (op.getShape().size() != op.getOffset().size())
        return op.emitOpError()
               << "requires sizes of shapes and offsets to be the same, got sizes "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top