Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 888 for Size (0.2 sec)

  1. tensorflow/compiler/mlir/lite/utils/utils.h

      SmallVector<int32_t> offsets;
      if (begin_values.size() == end_values.size()) {
        for (size_t i = 0; i < begin_values.size(); ++i) {
          offsets.push_back(end_values[i] - begin_values[i]);
        }
      }
    
      return mlir::DenseElementsAttr::get(
          RankedTensorType::get({static_cast<int>(offsets.size())},
                                mlir::IntegerType::get(begin.getContext(), 32)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

                }
                with(it.find { it.details.buildPath == ":include" }) {
                    details.rootProject.children.size() == 1
                }
                with(it.find { it.details.buildPath == ":include:inner-include" }) {
                    details.rootProject.children.size() == 1
                }
            }
    
            when:
            configurationCacheRun(task)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

          shape.push_back(static_cast<int64_t>(op->window_strides.size()));
          attributes.emplace_back(builder.getNamedAttr(
              "window_strides",
              BuildVhloTensorV1Attr(shape, op->window_strides, builder)));
        } else {
          std::vector<int64_t> data(op->input_spatial_dimensions.size(), 1);
          std::vector<int64_t> shape;
          shape.push_back(static_cast<int64_t>(data.size()));
          attributes.emplace_back(builder.getNamedAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/stream_executor/stream_executor.cc

        if (buffer == nullptr && size > 0) {
          return absl::InternalError(
              absl::StrFormat("Failed to allocate HostMemory of size %d", size));
        }
        return std::make_unique<HostMemoryAllocation>(buffer, size, this);
      }
    
      void HostMemoryDeallocate(void* mem) override {
        stream_executor_->host_memory_deallocate(&device_, mem);
      }
    
      void* UnifiedMemoryAllocate(uint64 size) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    page.user.max.fetch.size=1000
    page.role.max.fetch.size=1000
    page.group.max.fetch.size=1000
    page.crawling.info.param.max.fetch.size=100
    page.crawling.info.max.fetch.size=1000
    page.data.config.max.fetch.size=100
    page.web.config.max.fetch.size=100
    page.file.config.max.fetch.size=100
    page.duplicate.host.max.fetch.size=1000
    page.failure.url.max.fetch.size=1000
    page.favorite.log.max.fetch.size=100
    page.file.auth.max.fetch.size=100
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            assert buildIdentified.size() == 2
            with(buildIdentified[0].details) {
                assert buildPath == ':'
            }
            with(buildIdentified[1].details) {
                assert buildPath == ':unused'
            }
            def projectsIdentified = operations.progress(ProjectsIdentifiedProgressDetails)
            assert projectsIdentified.size() == 1
            with(projectsIdentified[0].details) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. src/encoding/binary/binary.go

    				structSize.Store(t, size)
    			}
    			return size * v.Len()
    		}
    
    	case reflect.Struct:
    		t := v.Type()
    		if size, ok := structSize.Load(t); ok {
    			return size.(int)
    		}
    		size := sizeof(t)
    		structSize.Store(t, size)
    		return size
    
    	default:
    		if v.IsValid() {
    			return sizeof(v.Type())
    		}
    	}
    
    	return -1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            then:
            def messages = models.left
            messages.size() == 2
            messages[0] == "It works from project :"
            messages[1] == "It works from project :a"
            def model = models.right
            model.size() == 2
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/go/token/position.go

    	// Allocate f outside the critical section.
    	f := &File{name: filename, size: size, lines: []int{0}}
    
    	s.mutex.Lock()
    	defer s.mutex.Unlock()
    	if base < 0 {
    		base = s.base
    	}
    	if base < s.base {
    		panic(fmt.Sprintf("invalid base %d (should be >= %d)", base, s.base))
    	}
    	f.base = base
    	if size < 0 {
    		panic(fmt.Sprintf("invalid size %d (should be >= 0)", size))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

                           int64_t axis) {
        assert(shape.size() == index.size());
        assert(axis < shape.size());
        assert(axis >= 0);
        assert(index[axis] == 0);
        offset_ = IndexToOffset(shape, index);
        stride_ = StrideForAxis(shape, axis);
        size_ = shape[axis];
      }
    
      // Returns the size of the 1-d slice across the tensor.
      int64_t size() const { return size_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top